fix images

pull/139/head
Aevann 2023-03-14 15:35:31 +02:00
parent cee74418ad
commit b48a7dd129
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ def process_files(files, v, body):
name = f'/images/{time.time()}'.replace('.','') + '.webp'
file.save(name)
url = process_image(name, v)
body = body.replace(f'[{file.filename}]', url, 1)
body = body.replace(f'[{file.filename}]', f'{url} ', 1)
elif file.content_type.startswith('video/'):
body = body.replace(f'[{file.filename}]', process_video(file, v), 1)
elif file.content_type.startswith('audio/'):
@ -254,7 +254,7 @@ def process_image(filename:str, v, resize=0, trim=False, uploader_id:Optional[in
db.add(media)
if IS_LOCALHOST: return f'![]({filename})'
return f'https://i.{SITE}{filename} '
return f'https://i.{SITE}{filename}'
def process_dm_images(v, user, body):