mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:49:11 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			463 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			463 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| String? getVersionCompatibilityMessage(
 | |
|   int appMajor,
 | |
|   int appMinor,
 | |
|   int serverMajor,
 | |
|   int serverMinor,
 | |
| ) {
 | |
|   if (serverMajor != appMajor) {
 | |
|     return 'Your app major version is not compatible with the server!';
 | |
|   }
 | |
| 
 | |
|   // Add latest compat info up top
 | |
|   if (serverMinor < 106 && appMinor >= 106) {
 | |
|     return 'Your app minor version is not compatible with the server! Please update your server to version v1.106.0 or newer to login';
 | |
|   }
 | |
| 
 | |
|   return null;
 | |
| }
 |