Merge branch 'dev'
This commit is contained in:
commit
686f1d57cb
1 changed files with 2 additions and 2 deletions
4
ui/src/utils.ts
vendored
4
ui/src/utils.ts
vendored
|
@ -423,7 +423,7 @@ export function objectFlip(obj: any) {
|
||||||
export function pictshareAvatarThumbnail(src: string): string {
|
export function pictshareAvatarThumbnail(src: string): string {
|
||||||
// sample url: http://localhost:8535/pictshare/gs7xuu.jpg
|
// sample url: http://localhost:8535/pictshare/gs7xuu.jpg
|
||||||
let split = src.split('pictshare');
|
let split = src.split('pictshare');
|
||||||
let out = `${split[0]}pictshare/96${split[1]}`;
|
let out = `${split[0]}pictshare/webp/96${split[1]}`;
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -448,7 +448,7 @@ export function pictshareImage(
|
||||||
hash = split[1];
|
hash = split[1];
|
||||||
}
|
}
|
||||||
|
|
||||||
let out = `${root}/${thumbnail ? '192/' : ''}${hash}`;
|
let out = `${root}/webp/${thumbnail ? '192/' : ''}${hash}`;
|
||||||
return out;
|
return out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue