Merge branch 'frost' of https://github.com/Aevann1/rDrama into frost

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-10-08 03:19:19 +02:00
commit df977228ae
1 changed files with 2 additions and 1 deletions

View File

@ -206,12 +206,13 @@ def comment(v):
copyfile(oldname, filename)
process_image(filename, resize=400)
elif parent_post.id == BANNER_THREAD:
banner_width = 1200 if not SITE_NAME == 'PCM' else 0
li = sorted(os.listdir(f'files/assets/images/{SITE_NAME}/banners'),
key=lambda e: int(e.split('.webp')[0]))[-1]
num = int(li.split('.webp')[0]) + 1
filename = f'files/assets/images/{SITE_NAME}/banners/{num}.webp'
copyfile(oldname, filename)
process_image(filename, resize=1200)
process_image(filename, resize=banner_width)
elif parent_post.id == BADGE_THREAD:
try:
badge_def = loads(body)