Skip to content

Commit

Permalink
fix: IndicatorNotifier._onCanProcess. Null check operator used on a n…
Browse files Browse the repository at this point in the history
…ull value (#782), (#774).
  • Loading branch information
xuelongqy committed Nov 10, 2023
1 parent c4024e6 commit 5112e41
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 3.3.2+3
## 3.3.2+4
- fix: IndicatorNotifier._onCanProcess. Null check operator used on a null value [#782](https://github.com/xuelongqy/flutter_easy_refresh/issues/782), [#774](https://github.com/xuelongqy/flutter_easy_refresh/issues/774).

## 3.3.2+2
Expand Down
2 changes: 1 addition & 1 deletion lib/src/notifier/indicator_notifier.dart
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ abstract class IndicatorNotifier extends ChangeNotifier {
ScrollController? scrollController,
bool force = false,
}) {
if (_mounted) {
if (!_mounted) {
return Future.value();
}
if (!force) {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: easy_refresh
description: A flutter widget that provides pull-down refresh and pull-up load.
version: 3.3.2+3
version: 3.3.2+4
homepage: https://xuelongqy.github.io/flutter_easy_refresh
repository: https://github.com/xuelongqy/flutter_easy_refresh
issue_tracker: https://github.com/xuelongqy/flutter_easy_refresh/issues
Expand Down

0 comments on commit 5112e41

Please sign in to comment.