Skip to content

Commit

Permalink
Fix chained chat render tasks not starting after being reinitialized
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrubN committed Aug 26, 2024
1 parent 6865485 commit 9e1c332
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchDownloaderWPF/TwitchTasks/ChatRenderTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void Reinitialize()
TokenSource = new CancellationTokenSource();
Exception = null;
CanReinitialize = false;
ChangeStatus(DependantTask is null || DependantTask.Status is TwitchTaskStatus.Finished ? TwitchTaskStatus.Ready : TwitchTaskStatus.Waiting);
ChangeStatus(DependantTask is null ? TwitchTaskStatus.Ready : TwitchTaskStatus.Waiting);
}

public bool CanRun()
Expand Down

0 comments on commit 9e1c332

Please sign in to comment.