We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea2a7ab commit c267b24Copy full SHA for c267b24
1 file changed
bot/helper/mirror_leech_utils/download_utils/direct_link_generator.py
@@ -1830,11 +1830,11 @@ def berkasdrive(url):
1830
1831
def swisstransfer(link):
1832
matched_link = match(
1833
- r"https://www\.swisstransfer\.com/d/([\w-]+)(?::(\w+))?", link
+ r"https://www\.swisstransfer\.com/d/([\w-]+)(?:\:\:(\w+))?", link
1834
)
1835
if not matched_link:
1836
raise DirectDownloadLinkException(
1837
- f"Invalid SwissTransfer link format ERROR: {link}"
+ f"ERROR: Invalid SwissTransfer link format {link}"
1838
1839
1840
transfer_id, password = matched_link.groups()
0 commit comments