Skip to content
This repository has been archived by the owner on Jun 28, 2023. It is now read-only.

Commit

Permalink
復原改錯的部分
Browse files Browse the repository at this point in the history
  • Loading branch information
SiongSng committed Sep 18, 2021
1 parent ea6ba44 commit 34aed4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/LauncherInfo.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class LauncherInfo {
String type = const String.fromEnvironment('version_type');

VersionTypes VersionType = Updater.getVersionTypeFromString(type);
return VersionTypes.stable;
return VersionType;
}

static Text getVersionTypeText() {
Expand Down Expand Up @@ -55,6 +55,6 @@ class LauncherInfo {
}

static int getVersionCode() {
return 486;
return const int.fromEnvironment('build_id');
}
}

0 comments on commit 34aed4c

Please sign in to comment.