We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2049b87 commit 9b32c0aCopy full SHA for 9b32c0a
hiddify_reality_scanner/VERSION
@@ -1 +1 @@
1
-1.6.1
+1.6.3
hiddify_reality_scanner/cli.py
@@ -1,4 +1,5 @@
import random
2
+import sys
3
4
import traceback
5
import urllib
@@ -129,6 +130,12 @@ def parse_reality(url):
129
130
}
131
if res["type"] == "http":
132
res["type"] = "h2"
133
+
134
+ if not res['public_key'] or not res["short_id"]:
135
+ print('=============================================================================')
136
+ print('Incorrect vless link! make sure that your config is between double quotation(")')
137
138
+ sys.exit(1)
139
return res
140
141
0 commit comments