From f2b7b196a8d8d24e6920ac7c1b98c87bc0c99fc6 Mon Sep 17 00:00:00 2001 From: Alexey Arutyunov Date: Sat, 2 Aug 2025 21:20:29 +0200 Subject: [PATCH] Fix update date for RuStore (#2445) --- lib/app_sources/rustore.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/app_sources/rustore.dart b/lib/app_sources/rustore.dart index 22222d4..0b91f91 100644 --- a/lib/app_sources/rustore.dart +++ b/lib/app_sources/rustore.dart @@ -66,7 +66,7 @@ class RuStore extends AppSource { String appName = appDetails['appName'] ?? tr('app'); String author = appDetails['companyName'] ?? name; - String? dateStr = appDetails['updatedAt']; + String? dateStr = appDetails['appVerUpdatedAt']; String? version = appDetails['versionName']; String? changeLog = appDetails['whatsNew']; if (version == null) {