File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,9 @@ Future<void> ifShouldBackup() async {
48
48
0 )) {
49
49
ConnectivityResult connectivityResult =
50
50
await (Connectivity ().checkConnectivity ());
51
- if (connectivityResult != ConnectivityResult .none && ! backingUp) {
51
+ if (connectivityResult != ConnectivityResult .none &&
52
+ connectivityResult != ConnectivityResult .mobile &&
53
+ ! backingUp) {
52
54
Sentry .addBreadcrumb (Breadcrumb (
53
55
message: "Initiating auto back up" , timestamp: DateTime .now ()));
54
56
backingUp = true ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
15
15
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
16
16
# Read more about iOS versioning at
17
17
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18
- version : 1.24.0+96
18
+ version : 1.24.1+97
19
19
20
20
environment :
21
21
sdk : " >=2.12.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments