Minor UI tweak (pseudo-version in italics on apps page instead of readout)

This commit is contained in:
Imran Remtulla
2025-05-30 22:29:32 -04:00
parent 798bddd17f
commit 3edaa143e4
3 changed files with 11 additions and 5 deletions

View File

@@ -100,9 +100,7 @@ class _AppPageState extends State<AppPage> {
bool isVersionDetectionStandard =
app?.app.additionalSettings['versionDetection'] == true;
bool installedVersionIsEstimate = trackOnly ||
(app?.app.installedVersion != null &&
app?.app.additionalSettings['versionDetection'] != true);
bool installedVersionIsEstimate = app?.app != null ? isVersionPseudo(app!.app) : false;
if (app != null && !_wasWebViewOpened) {
_wasWebViewOpened = true;