]> Untitled Git - lemmy.git/commitdiff
Adding webp for pictshare images / avatars. Fixes #772
authorDessalines <tyhou13@gmx.com>
Wed, 3 Jun 2020 15:41:22 +0000 (11:41 -0400)
committerDessalines <tyhou13@gmx.com>
Wed, 3 Jun 2020 15:41:22 +0000 (11:41 -0400)
ui/src/utils.ts

index bb1b6d905c8dbff4f21652e0ecaa029ce2da3f73..190fcf57e5eb6349367321f2e5797b5c0e4c3dbf 100644 (file)
@@ -423,7 +423,7 @@ export function objectFlip(obj: any) {
 export function pictshareAvatarThumbnail(src: string): string {
   // sample url: http://localhost:8535/pictshare/gs7xuu.jpg
   let split = src.split('pictshare');
-  let out = `${split[0]}pictshare/96${split[1]}`;
+  let out = `${split[0]}pictshare/webp/96${split[1]}`;
   return out;
 }
 
@@ -448,7 +448,7 @@ export function pictshareImage(
     hash = split[1];
   }
 
-  let out = `${root}/${thumbnail ? '192/' : ''}${hash}`;
+  let out = `${root}/webp/${thumbnail ? '192/' : ''}${hash}`;
   return out;
 }