Skip to content

Commit

Permalink
fix: ConnectivityResult.wifi regression (immich-app#14401)
Browse files Browse the repository at this point in the history
  • Loading branch information
systemtester authored Nov 29, 2024
1 parent 3d61548 commit 56d2309
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 56d2309

Please sign in to comment.