Browse Source

bugfix: high res profile pictures always squarish

Carsten Porth 6 năm trước cách đây
mục cha
commit
2120362407
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      app/src/pipes/high-resolution/high-resolution.ts

+ 1 - 1
app/src/pipes/high-resolution/high-resolution.ts

@@ -9,7 +9,7 @@ export class HighResolutionPipe implements PipeTransform {
    */
   transform(value: string, ...args) {
     if (value) {
-      return value.replace("_normal", "");
+      return value.replace("_normal", "_400x400");
     }
   }
 }