Skip to content

Commit

Permalink
quick workaround #1880
Browse files Browse the repository at this point in the history
  • Loading branch information
S-Man42 committed Sep 14, 2024
1 parent bd7b103 commit 9f54b51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/application/_common/gcw_package_info.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import 'package:package_info_plus/package_info_plus.dart';
import 'package:flutter/foundation.dart' show kIsWeb;

const _PACKAGE_INFO_UNKNOWN = 'unknown';

Expand Down Expand Up @@ -27,7 +28,7 @@ class GCWPackageInfo {

GCWPackageInfo._(PackageInfo info) {
packageName = info.packageName;
appName = info.appName;
appName = kIsWeb ? 'GC Wizard' : info.appName; // due to strange bug: https:/S-Man42/GCWizard/issues/1880
version = info.version;
buildNumber = info.buildNumber;
buildSignature = info.buildSignature;
Expand Down

0 comments on commit 9f54b51

Please sign in to comment.