Skip to content

Commit

Permalink
fix(updater): ability to start again after cancelling (#937)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAabedKhan committed Jun 16, 2023
1 parent cebfa7c commit 6cc1bd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/services/revanced_api.dart
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class RevancedAPI {
return null;
}

StreamController<double> managerUpdateProgress = StreamController<double>();
StreamController<double> managerUpdateProgress = StreamController<double>.broadcast();

void updateManagerDownloadProgress(int progress) {
managerUpdateProgress.add(progress.toDouble());
Expand Down

0 comments on commit 6cc1bd2

Please sign in to comment.