Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
miyaji255 committed May 3, 2024
1 parent 3377342 commit 8c993e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KoeBook/Services/DisplayStateChangeService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public void UpdateState(BookProperties bookProperties, GenerationState state)
_ = App.MainWindow.DispatcherQueue.TryEnqueue(DispatcherQueuePriority.High, () =>
{
var task = taskService.GetProcessingTask(bookProperties.Id);
if(task.State < state)
if (task.State < state)
task.State = state;
});
}
Expand Down

0 comments on commit 8c993e4

Please sign in to comment.