Skip to content

Commit

Permalink
fix: force refresh for second run when doing a quick refresh first
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Sep 1, 2024
1 parent 4e448ca commit b5f170e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Shoko.Server/Providers/TMDB/TmdbMetadataService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ public async Task<bool> UpdateShow(int showId, bool forceRefresh = false, bool d
ShokoEventHandler.Instance.OnEpisodeUpdated(tmdbShow, episode, reason);

if (quickRefresh)
await ScheduleUpdateOfShow(showId, forceRefresh, downloadImages, downloadCrewAndCast, downloadAlternateOrdering);
await ScheduleUpdateOfShow(showId, true, downloadImages, downloadCrewAndCast, downloadAlternateOrdering);

return updated;
}
Expand Down Expand Up @@ -2234,7 +2234,7 @@ private async Task<IDisposable> GetLockForEntity(ForeignEntityType entityType, i
});
}

private class DisposableAction : IDisposable
internal class DisposableAction : IDisposable
{
private readonly Action _action;

Expand Down

0 comments on commit b5f170e

Please sign in to comment.