This commit is contained in:
Imran Remtulla
2023-08-22 16:28:22 -04:00
parent e956ee9254
commit 82e08150ab
2 changed files with 14 additions and 23 deletions

View File

@@ -708,17 +708,6 @@ class AppsProvider with ChangeNotifier {
logs.add('Could not reconcile version formats for: ${app.id}');
modded = true;
}
// if (app.installedVersion != null &&
// app.additionalSettings['versionDetection'] ==
// 'standardVersionDetection') {
// var correctedInstalledVersion =
// reconcileVersionDifferences(app.installedVersion!, app.latestVersion);
// if (correctedInstalledVersion == null) {
// app.additionalSettings['versionDetection'] = 'noVersionDetection';
// logs.add('Could not reconcile version formats for: ${app.id}');
// modded = true;
// }
// }
return modded ? app : null;
}