Slight tweaks

This commit is contained in:
Imran Remtulla
2022-12-05 20:09:16 -05:00
parent 15183c3a95
commit bb4e470760
2 changed files with 3 additions and 3 deletions

View File

@@ -33,8 +33,8 @@ class APKDetails {
APKDetails(this.versionFromSource, this.apkUrls) {
var temp = extractStandardVersionName(versionFromSource);
this.isStandardVersion = temp != null;
this.version = temp ?? versionFromSource;
isStandardVersion = temp != null;
version = temp ?? versionFromSource;
}
}