mirror of
https://github.com/immich-app/immich.git
synced 2024-12-31 00:43:56 -05:00
fix: ConnectivityResult.wifi regression (#14401)
This commit is contained in:
parent
3d61548d7d
commit
56d2309122
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue