removing 24 limit for private

This commit is contained in:
aliabd 2021-03-26 17:21:45 -04:00
parent 62f672fb75
commit 7828c660e6
2 changed files with 3 additions and 1 deletions

View File

@ -14,3 +14,4 @@ ffmpy
librosa
colorama>=0.3.9
markdown2
pycrypto

View File

@ -424,7 +424,8 @@ class Interface:
# Set up shareable link
self.share = share
if share:
print(strings.en["SHARE_LINK_MESSAGE"])
if not private_endpoint:
print(strings.en["SHARE_LINK_MESSAGE"])
try:
share_url = networking.setup_tunnel(server_port, private_endpoint)
print(strings.en["SHARE_LINK_DISPLAY"].format(share_url))