mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
Updated jpeg thumbnail path (#780)
This commit is contained in:
parent
8bb656cb17
commit
4342285507
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue