Skip to content

Commit

Permalink
fixing mal not correctly updating rewatching status on completion of …
Browse files Browse the repository at this point in the history
…rewatch
  • Loading branch information
vosmiic committed May 17, 2023
1 parent 3c9564c commit 5546da1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Api/Mal/MalApiCalls.cs
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,8 @@ public async Task<UpdateAnimeStatusResponse> UpdateAnimeStatus(int animeId, int

if (isRewatching != null && isRewatching.Value) {
body.Add(new KeyValuePair<string, string>("is_rewatching", true.ToString()));
} else {
body.Add(new KeyValuePair<string, string>("is_rewatching", false.ToString().ToLower()));
}

if (numberOfTimesRewatched != null) {
Expand Down

0 comments on commit 5546da1

Please sign in to comment.