Skip to content

Commit

Permalink
Fix: if not in map
Browse files Browse the repository at this point in the history
  • Loading branch information
sanmusen214 committed Jan 11, 2024
1 parent f262ac0 commit 925cad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/configs/defaultSettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"s":["GLOBAL", "GLOBAL_EN", "JP", "CN", "CN_BILI"],
"m": {
"from": "ACTIVITY_PATH",
"map": lambda x: activity2server[x]
"map": lambda x: activity2server[x] if x in activity2server else "GLOBAL"
}
},
"TARGET_EMULATOR_PATH":{"d":""},
Expand Down

0 comments on commit 925cad1

Please sign in to comment.