disable seafile image preview
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
47340dfdb4
commit
a545af54cf
15
bot.py
15
bot.py
@ -56,13 +56,14 @@ class CustomClient(discord.Client):
|
||||
f"https://stream.purser.it/{stripped}/?provider=seafile&raw=true",
|
||||
allow_redirects=True,
|
||||
)
|
||||
raw = str(
|
||||
(ctype := resp.headers.get("content-type")) and "image" in ctype
|
||||
).lower()
|
||||
|
||||
await message.reply(
|
||||
content=f"https://stream.purser.it/{stripped}/?provider=seafile&raw={raw}"
|
||||
)
|
||||
if (ctype := resp.headers.get("content-type")) and "image" in ctype:
|
||||
await message.reply(
|
||||
content=f"<https://stream.purser.it/{stripped}/?provider=seafile&raw=true>"
|
||||
)
|
||||
else:
|
||||
await message.reply(
|
||||
content=f"https://stream.purser.it/{stripped}/?provider=seafile&raw=false"
|
||||
)
|
||||
|
||||
elif "twitch" in url.hostname:
|
||||
stripped = url.path.strip("/")
|
||||
|
Loading…
Reference in New Issue
Block a user