Skip to content

Commit

Permalink
fix all args is not working
Browse files Browse the repository at this point in the history
Signed-off-by: ふぁ <yuki@yuki0311.com>
  • Loading branch information
fa0311 committed Mar 7, 2024
1 parent 3642aa6 commit ec5e748
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion DMMGamePlayerFastLauncher/DMMGamePlayerFastLauncher.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ def loder(master: LanchLauncher):
if AppConfig.DATA.proxy_all.get() != "":
os.environ["ALL_PROXY"] = AppConfig.DATA.proxy_all.get()
if AppConfig.DATA.dmm_proxy_all.get() != "":
DgpSessionV2.PROXY["all"] = AppConfig.DATA.dmm_proxy_all.get()
DgpSessionV2.PROXY["http"] = AppConfig.DATA.dmm_proxy_all.get()
DgpSessionV2.PROXY["https"] = AppConfig.DATA.dmm_proxy_all.get()

ctk.set_default_color_theme(str(AssetsPathConfig.THEMES.joinpath(AppConfig.DATA.theme.get()).with_suffix(".json")))
ctk.set_appearance_mode(AppConfig.DATA.appearance_mode.get())
Expand Down

0 comments on commit ec5e748

Please sign in to comment.