Skip to content

Commit

Permalink
Fix ConnectivityResult.wifi regression
Browse files Browse the repository at this point in the history
  • Loading branch information
systemtester authored Nov 29, 2024
1 parent 3d61548 commit ed40f67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class BackupVerification extends _$BackupVerification {
return;
}
final connection = await Connectivity().checkConnectivity();
if (connection.contains(ConnectivityResult.wifi)) {
if (!connection.contains(ConnectivityResult.wifi)) {
if (context.mounted) {
ImmichToast.show(
context: context,
Expand Down

0 comments on commit ed40f67

Please sign in to comment.