Merge branch 'main' into accounting

This commit is contained in:
2026-04-20 08:25:13 +02:00
5 changed files with 13 additions and 6 deletions
@@ -144,7 +144,7 @@ public class TagModule extends BaseHandler implements TagService {
@Override
public void save(String module, long entityId, Collection<Long> userIds, Collection<String> tags) {
tagDb.save(userIds,module,entityId,tags);
tagDb.save(userIds,module,entityId,tags.stream().map(String::trim).toList());
}
@Override