Merge pull request #113 from rxt1077/master

Fixed order of have_tunnel check
This commit is contained in:
Kevin Hester authored and GitHub committed 2021-11-04 11:26:20 -07:00
commit 55b9ab8bf1
1 file changed
+1 -1
+1 -1
View File
@@ -511,7 +511,7 @@ def common():
# We assume client is fully connected now
onConnected(client)
if args.noproto or (args.tunnel and have_tunnel): # loop until someone presses ctrlc
if args.noproto or (have_tunnel and args.tunnel): # loop until someone presses ctrlc
while True:
time.sleep(1000)