mirror of https://gitlab.com/litecord/litecord.git
embed.messages: fix syntax, add docstring
This commit is contained in:
parent
404783534c
commit
13720904bd
|
|
@ -86,11 +86,12 @@ async def _update_and_dispatch(payload, new_embeds, storage, dispatcher):
|
||||||
|
|
||||||
|
|
||||||
def is_media_url(url: str) -> bool:
|
def is_media_url(url: str) -> bool:
|
||||||
|
"""Return if the given URL is a media url."""
|
||||||
parsed = urllib.parse.urlparse(url)
|
parsed = urllib.parse.urlparse(url)
|
||||||
path = Path(parsed.path)
|
path = Path(parsed.path)
|
||||||
extension = path.suffix.lstrip('.')
|
extension = path.suffix.lstrip('.')
|
||||||
|
|
||||||
return extension in MEDIA_EXTENSIONS:
|
return extension in MEDIA_EXTENSIONS
|
||||||
|
|
||||||
|
|
||||||
async def insert_mp_embed(parsed, config, session):
|
async def insert_mp_embed(parsed, config, session):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue