Skip to content

Commit

Permalink
hmm?
Browse files Browse the repository at this point in the history
  • Loading branch information
Muska-Ami committed Sep 13, 2024
1 parent d80ab9a commit 171a59a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nyalcf_env/lib/src/gui.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import 'package:dotenv/dotenv.dart';
final _env = DotEnv(includePlatformEnvironment: true)..load();

bool? ENV_GUI_DISABLE_AUTO_UPDATE_CHECK = bool.tryParse(
_env['NYA_LCF_DISABLE_AUTO_UPDATE_CHECK'] ?? '',
_env['NYA_LCF_GUI_DISABLE_AUTO_UPDATE_CHECK'] ?? '',
caseSensitive: false,
);
bool? ENV_GUI_DISABLE_DEEPLINK = bool.tryParse(
_env['NYA_LCF_DISABLE_DEEPLINK'] ?? '',
_env['NYA_LCF_GUI_DISABLE_DEEPLINK'] ?? '',
caseSensitive: false,
);

0 comments on commit 171a59a

Please sign in to comment.