1
0
mirror of https://github.com/koloml/furbooru-tagging-assistant.git synced 2025-12-23 23:02:58 +00:00

Fixed exporters not saving categories for groups and temporary flags for profiles

This commit is contained in:
2025-02-19 03:08:54 +04:00
parent 07373e17d5
commit 62dc38b35a

View File

@@ -14,6 +14,8 @@ const entitiesExporters: ExportersMap = {
id: entity.id,
name: entity.settings.name,
tags: entity.settings.tags,
// Any exported profile should be considered non-temporary.
temporary: false,
}
},
groups: entity => {
@@ -23,6 +25,7 @@ const entitiesExporters: ExportersMap = {
name: entity.settings.name,
tags: entity.settings.tags,
prefixes: entity.settings.prefixes,
category: entity.settings.category,
}
}
};