Skip to content

Commit

Permalink
fix: fix inverse bool logic
Browse files Browse the repository at this point in the history
…I will learn to pay closer attention to the logical state needed to continue the branch someday, but that way was not 2 days ago.
  • Loading branch information
revam committed Nov 25, 2024
1 parent 2573743 commit 016323b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shoko.Server/Providers/AniDB/HTTP/AnimeCreator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -747,7 +747,7 @@ public static bool CreateTags(List<ResponseTag> tags, SVR_AniDB_Anime anime)
continue;

var tag = FindOrCreateTag(rawtag);
if (newTagIDs.Add(tag.TagID))
if (!newTagIDs.Add(tag.TagID))
continue;

tagsToSave.Add(tag);
Expand Down

0 comments on commit 016323b

Please sign in to comment.