1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00

Loading faces even if override keywords are disabled. fixes #293

This commit is contained in:
Patrik J. Braun 2021-06-03 22:44:41 +02:00
parent cdcd246fb2
commit 57ac433c46

View File

@ -295,8 +295,9 @@ export class MetadataLoader {
faces.push({name, box}); faces.push({name, box});
} }
} }
if (Config.Client.Faces.keywordsToPersons && faces.length > 0) { if (faces.length > 0) {
metadata.faces = faces; // save faces metadata.faces = faces; // save faces
if (Config.Client.Faces.keywordsToPersons) {
// remove faces from keywords // remove faces from keywords
metadata.faces.forEach(f => { metadata.faces.forEach(f => {
const index = metadata.keywords.indexOf(f.name); const index = metadata.keywords.indexOf(f.name);
@ -306,6 +307,7 @@ export class MetadataLoader {
}); });
} }
} }
}
} catch (err) { } catch (err) {
} }