mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	Added toast message component
This commit is contained in:
		| @@ -9,7 +9,6 @@ import 'package:immich_mobile/shared/services/backup.service.dart'; | ||||
| import 'package:immich_mobile/shared/services/device_info.service.dart'; | ||||
| import 'package:immich_mobile/shared/services/network.service.dart'; | ||||
| import 'package:immich_mobile/shared/models/device_info.model.dart'; | ||||
| import 'package:immich_mobile/utils/dio_http_interceptor.dart'; | ||||
|  | ||||
| class AuthenticationNotifier extends StateNotifier<AuthenticationState> { | ||||
|   AuthenticationNotifier() | ||||
| @@ -45,8 +44,12 @@ class AuthenticationNotifier extends StateNotifier<AuthenticationState> { | ||||
|       Hive.box(userInfoBox).put(serverEndpointKey, serverEndpoint); | ||||
|     } | ||||
|  | ||||
|     bool isServerEndpointVerified = await _networkService.pingServer(); | ||||
|     if (!isServerEndpointVerified) { | ||||
|     try { | ||||
|       bool isServerEndpointVerified = await _networkService.pingServer(); | ||||
|       if (!isServerEndpointVerified) { | ||||
|         return false; | ||||
|       } | ||||
|     } catch (e) { | ||||
|       return false; | ||||
|     } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user