diff --git a/lib/shared/services/localization/localization_service.dart b/lib/shared/services/localization/localization_service.dart index 949747cd..4933b7af 100644 --- a/lib/shared/services/localization/localization_service.dart +++ b/lib/shared/services/localization/localization_service.dart @@ -83,11 +83,11 @@ class LocalizationService { return await processData(context); } else { await StorageUtil().ensureInitialization(); - if (!isUnique && !isActive) log('() => not unique and not active'); - else if (!isUnique && isInactived) log('() => not unique and inactived'); - else if (!isUnique && isPending) log('() => not unique and pending'); - else if (!isUnique && isBlocked) log('() => not unique and blocked'); - else log('() => else'); + if (!isUnique && !isActive) log('() => not unique and not active'); + if (!isUnique && isInactived) log('() => not unique and inactived'); + if (!isUnique && isPending) log('() => not unique and pending'); + if (!isUnique && isBlocked) log('() => not unique and blocked'); + log('() => else'); return await selectLocal(context); } } catch (e, s) {