diff --git a/lib/screens/user/user_map_screen.dart b/lib/screens/user/user_map_screen.dart index b948ee0..3354b8e 100644 --- a/lib/screens/user/user_map_screen.dart +++ b/lib/screens/user/user_map_screen.dart @@ -126,7 +126,7 @@ class _UserMapScreenState extends State { void _checkForUpdate(SettingEntity settings) { if (Platform.isAndroid) { - if (appVersion == settings.versionAndroid) { + if (appVersion != settings.versionAndroid) { showDialog( context: context, builder: (context) { @@ -166,7 +166,7 @@ class _UserMapScreenState extends State { } } if (Platform.isIOS) { - if (appVersion == settings.versionIos) { + if (appVersion != settings.versionIos) { showDialog( context: context, builder: (context) {