Explorar o código

bugfix: high res profile pictures always squarish

Carsten Porth %!s(int64=6) %!d(string=hai) anos
pai
achega
2120362407
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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");
     }
   }
 }