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

Commit

Permalink
修复存在部分情况下中文名称url编码的情况,新增同时添加多个配置,恢复测试延时
Browse files Browse the repository at this point in the history
  • Loading branch information
jiangxufeng committed Sep 9, 2019
1 parent 2345856 commit 91ae687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v2rayL-GUI/v2rayLui.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def display_all_conf(self):
lists = []
i = 1
for k, v in all_conf.items():
lists.append((i, k, v["add"]+":"+v["port"], v["prot"],
lists.append((i, k, str(v["add"])+":"+str(v["port"]), v["prot"],
True if k == self.v2rayL.current else False, self.start_conn_th,
self.del_conf, self.show_share_dialog))
i += 1
Expand Down

0 comments on commit 91ae687

Please sign in to comment.