summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2020-06-22 13:45:16 -0400
committerDessalines <tyhou13@gmx.com>2020-06-22 13:45:16 -0400
commita4d2c2ab71da2952e1dcdcad1cc18b68acaf2814 (patch)
tree67ae30c1dcaddae59489eef930f09f32dc017ccb
parentcbed1850402716612769e2a473eb2c4ee9693419 (diff)
Upping thumbnail size.
-rw-r--r--RELEASES.md2
-rw-r--r--ui/src/utils.ts2
2 files changed, 3 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 63c5ea5c..3a797ab4 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -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.
diff --git a/ui/src/utils.ts b/ui/src/utils.ts
index 500992d7..39c371a1 100644
--- a/ui/src/utils.ts
+++ b/ui/src/utils.ts
@@ -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;
}