Skip to content

Commit

Permalink
Fix Issue #57, parse out v2ray in Error
Browse files Browse the repository at this point in the history
  • Loading branch information
freQniK committed Nov 2, 2023
1 parent 3016fbe commit 78dba1f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ def connect(self, ID, address, type):
lines = connection_file.readlines()

for l in lines:
if "Error" in l:
if "Error" in l and "v2ray" not in l:
return {"v2ray_pid" : None, "result": False, "status" : l}

if type == "WireGuard":
Expand Down
2 changes: 1 addition & 1 deletion src/typedef/konstants.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class IBCTokens():
#mu_coins = ["tsent", "udvpn", "uscrt", "uosmo", "uatom", "udec"]
class TextStrings():
dash = "-"
VERSION = "v1.7.10"
VERSION = "v1.7.12-rc0"

class MeileColors():
DIALOG_BG_COLOR = "#121212"
Expand Down

0 comments on commit 78dba1f

Please sign in to comment.