From 78dba1fe5e9329013b879c453e06764c72014bde Mon Sep 17 00:00:00 2001 From: freqnik Date: Thu, 2 Nov 2023 02:02:51 -0400 Subject: [PATCH] Fix Issue #57, parse out v2ray in Error --- src/cli/wallet.py | 2 +- src/typedef/konstants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/wallet.py b/src/cli/wallet.py index e9807a5..6d9829c 100644 --- a/src/cli/wallet.py +++ b/src/cli/wallet.py @@ -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": diff --git a/src/typedef/konstants.py b/src/typedef/konstants.py index 10b4c2e..ca952fc 100644 --- a/src/typedef/konstants.py +++ b/src/typedef/konstants.py @@ -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"