Changed update check

This commit is contained in:
Juan Gilsanz Polo 2022-10-30 12:49:24 +01:00
parent a1709d0960
commit 9cfe691f9d

View file

@ -57,7 +57,7 @@ class _BaseState extends State<Base> with WidgetsBindingObserver {
if (installationSource != Source.IS_INSTALLED_FROM_PLAY_STORE) {
final result = await checkAppUpdatesGitHub();
if (result['result'] == 'success') {
if (true) {
if (updateExists(widget.appConfigProvider.getAppInfo!.version, result['body'].tagName)) {
return result['body'];
}
}