mirror of
https://github.com/oddluck/limnoria-plugins.git
synced 2025-04-28 22:41:08 -05:00
TextArt: format pastebin URLs to /raw/
This commit is contained in:
parent
7335b156d8
commit
ff7cc0b24c
@ -1135,7 +1135,9 @@ class TextArt(callbacks.Plugin):
|
|||||||
else:
|
else:
|
||||||
delay = self.registryValue('delay', msg.args[0])
|
delay = self.registryValue('delay', msg.args[0])
|
||||||
if url.startswith("https://paste.ee/p/"):
|
if url.startswith("https://paste.ee/p/"):
|
||||||
url = re.sub("https://paste.ee/p/", "https://paste.ee/r/", url)
|
url = url.replace("https://paste.ee/p/", "https://paste.ee/r/")
|
||||||
|
elif url.startswith("https://pastebin.com/") and '/raw/' not in url:
|
||||||
|
url = url.replace("https://pastebin.com/", "https://pastebin.com/raw/")
|
||||||
ua = UserAgent()
|
ua = UserAgent()
|
||||||
header = {'User-Agent':str(ua.random)}
|
header = {'User-Agent':str(ua.random)}
|
||||||
r = requests.head(url, headers=header)
|
r = requests.head(url, headers=header)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user