Skip to content

Commit

Permalink
fix: always force mylist sync when ran as an action
Browse files Browse the repository at this point in the history
  • Loading branch information
revam committed Jan 10, 2025
1 parent 56c383a commit c4d3447
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Shoko.Server/API/v3/Controllers/ActionController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ public ActionResult ScheduleMissingAniDBCreators()
public async Task<ActionResult> SyncMyList()
{
var scheduler = await _schedulerFactory.GetScheduler();
await scheduler.StartJob<SyncAniDBMyListJob>();
await scheduler.StartJob<SyncAniDBMyListJob>(c => c.ForceRefresh = true);
return Ok();
}

Expand Down

0 comments on commit c4d3447

Please sign in to comment.