Skip to content

Commit

Permalink
app: Tweak the fix for the account parsing.
Browse files Browse the repository at this point in the history
  • Loading branch information
patniemeyer committed Jun 18, 2024
1 parent 8073f2c commit d289203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui-orchid/lib/vpn/orchid_vpn_config/js_config.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class JSConfig extends UserConfig {
String? get(String expression) {
var result = jsEngine.evaluate(expression).toString();
// Map undefined variable references to null
if (result == 'undefined' ||
if (result == 'undefined' || result == 'null' ||
//
// This api returns string error messages from the underlying JS engines.
//
Expand Down

0 comments on commit d289203

Please sign in to comment.