Skip to content

Commit

Permalink
Fix boolean check for HandleSeason (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
scampower3 authored Mar 28, 2024
1 parent d393fc9 commit b77b2f8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ private async Task HandleSeries(Series series)
private async Task HandleSeason(Season season)
{
var series = season.Series;
if (series.HasTvdbId())
if (!series.HasTvdbId())
{
_logger.LogDebug("No TVDB Id available.");
return;
Expand Down

0 comments on commit b77b2f8

Please sign in to comment.