fixed typo causing issues with presets and tags

This commit is contained in:
Miodec 2021-08-18 12:05:12 +01:00
parent 55f21f7565
commit c68ad8b8b2

View file

@ -78,7 +78,7 @@ async function apply() {
let activeTagIds = [];
DB.getSnapshot().tags.forEach((tag) => {
if (tag.active) {
activeTagIds.push(tag.id);
activeTagIds.push(tag._id);
}
});
configChanges.tags = activeTagIds;