From dc33e526f3e9be41ccfb6a88cd3975da1fe9f1fc Mon Sep 17 00:00:00 2001 From: Christian Pauly Date: Fri, 9 Apr 2021 16:54:00 +0200 Subject: [PATCH] fix: Typo --- lib/utils/platform_infos.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/platform_infos.dart b/lib/utils/platform_infos.dart index 1e72d01a5..a5d35d1ff 100644 --- a/lib/utils/platform_infos.dart +++ b/lib/utils/platform_infos.dart @@ -29,7 +29,7 @@ abstract class PlatformInfos { static bool get usesTouchscreen => !isMobile; static String get clientName => - '${AppConfig.applicationName} ${isWeb ? 'Web' : Platform.operatingSystem}'; + '${AppConfig.applicationName} ${isWeb ? 'web' : Platform.operatingSystem}'; static Future getVersion() async { var version = kIsWeb ? 'Web' : 'Unknown';