mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
Updated jpeg thumbnail path (#780)
This commit is contained in:
parent
8bb656cb17
commit
4342285507
@ -62,7 +62,7 @@ export class ThumbnailGeneratorProcessor {
|
||||
|
||||
const temp = asset.originalPath.split('/');
|
||||
const originalFilename = temp[temp.length - 1].split('.')[0];
|
||||
const jpegThumbnailPath = resizePath + originalFilename + '.jpeg';
|
||||
const jpegThumbnailPath = join(resizePath, `${originalFilename}.jpeg`);
|
||||
|
||||
if (asset.type == AssetType.IMAGE) {
|
||||
try {
|
||||
|
Loading…
Reference in New Issue
Block a user