mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01: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 temp = asset.originalPath.split('/');
|
||||||
const originalFilename = temp[temp.length - 1].split('.')[0];
|
const originalFilename = temp[temp.length - 1].split('.')[0];
|
||||||
const jpegThumbnailPath = resizePath + originalFilename + '.jpeg';
|
const jpegThumbnailPath = join(resizePath, `${originalFilename}.jpeg`);
|
||||||
|
|
||||||
if (asset.type == AssetType.IMAGE) {
|
if (asset.type == AssetType.IMAGE) {
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue