bugfix: search for tags failed, if only one transaction with the given parameters was present

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-04-23 11:09:46 +02:00
parent b5e8979ed9
commit 906e1d65f4
@@ -183,7 +183,7 @@ public class SqliteDb extends BaseDb implements AccountDb {
} }
} }
rs.close(); rs.close();
return set; return set == null ? transactionTags : set;
} catch (SQLException e){ } catch (SQLException e){
throw failedToLoadMembers(accountId); throw failedToLoadMembers(accountId);
} }