소스 검색

bugfix: high res profile pictures always squarish

Carsten Porth 6 년 전
부모
커밋
2120362407
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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");
     }
   }
 }