Browse Source

bugfix: high res profile pictures always squarish

Carsten Porth 5 years ago
parent
commit
2120362407
1 changed files with 1 additions and 1 deletions
  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");
     }
   }
 }