Skip to content

Commit

Permalink
Fix AppDrive domain issue
Browse files Browse the repository at this point in the history
  • Loading branch information
l3v11 authored Aug 14, 2022
1 parent 4f0a312 commit 05372cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bot/helper/ext_utils/bot_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def is_gdrive_link(url: str):
return "drive.google.com" in url

def is_appdrive_link(url: str):
url = re.match(r'https?://appdrive\.in/\S+', url)
url = re.match(r'https?://appdrive\.\S+', url)
return bool(url)

def is_gdtot_link(url: str):
Expand Down

0 comments on commit 05372cd

Please sign in to comment.