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:
parent
cdcd246fb2
commit
57ac433c46
@ -295,8 +295,9 @@ export class MetadataLoader {
|
||||
faces.push({name, box});
|
||||
}
|
||||
}
|
||||
if (Config.Client.Faces.keywordsToPersons && faces.length > 0) {
|
||||
if (faces.length > 0) {
|
||||
metadata.faces = faces; // save faces
|
||||
if (Config.Client.Faces.keywordsToPersons) {
|
||||
// remove faces from keywords
|
||||
metadata.faces.forEach(f => {
|
||||
const index = metadata.keywords.indexOf(f.name);
|
||||
@ -306,6 +307,7 @@ export class MetadataLoader {
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user