]> Untitled Git - lemmy.git/commitdiff
Upping thumbnail size.
authorDessalines <tyhou13@gmx.com>
Mon, 22 Jun 2020 17:45:16 +0000 (13:45 -0400)
committerDessalines <tyhou13@gmx.com>
Mon, 22 Jun 2020 17:45:16 +0000 (13:45 -0400)
RELEASES.md
ui/src/utils.ts

index 63c5ea5cc424fcc3d7a3a7be81441f98388e5b28..3a797ab4b761463b5adcc464b27ebf05872bab60 100644 (file)
@@ -13,6 +13,8 @@ wget https://raw.githubusercontent.com/dessalines/lemmy/master/docker/prod/migra
 sudo bash migrate-pictshare-to-pictrs.bash
 ```
 
+*You'll have to log in again to pick up your avatar*
+
 Apart from that, we've closed [~90 issues!](https://github.com/LemmyNet/lemmy/milestone/16?closed=1), including:
 
 - Site-wide list of recent comments.
index 500992d7c3e5149c68de3f1107b8cc5ba90db2ff..39c371a11523154f6c8ccea858175d9a746b673a 100644 (file)
@@ -481,7 +481,7 @@ export function pictrsImage(hash: string, thumbnail: boolean = false): string {
   }
 
   let out = `${root}/${canUseWebP() ? 'webp/' : ''}${
-    thumbnail ? 'thumbnail192/' : ''
+    thumbnail ? 'thumbnail256/' : ''
   }${hash}`;
   return out;
 }