Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into independent
Browse files Browse the repository at this point in the history
  • Loading branch information
ua741 committed Sep 1, 2023
2 parents b252b3e + 4312024 commit 159defd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/utils/fake_progress.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ typedef FakeProgressCallback = void Function(int count);
class FakePeriodicProgress {
final FakeProgressCallback? callback;
final Duration duration;
late Timer _timer;
Timer? _timer;
bool _shouldRun = true;
int runCount = 0;

Expand All @@ -24,7 +24,7 @@ class FakePeriodicProgress {
void stop() {
if (_shouldRun) {
_shouldRun = false;
_timer.cancel();
_timer?.cancel();
}
}

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ description: ente photos application
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html

version: 0.7.90+490
version: 0.7.91+491

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down

0 comments on commit 159defd

Please sign in to comment.