#17 Period overview: add Actions

This commit is contained in:
2021-03-04 23:39:50 +01:00
parent d769ab908a
commit 2aa0f7fa9c
6 changed files with 48 additions and 3 deletions

View File

@@ -48,8 +48,8 @@ public class TransactionController {
String taxRelevant,
String accountsAnd,
String hasFile) {
final String fromDecoded = ControllerUtil.urlDecode(fromAccountKey);
final String toDecoded = ControllerUtil.urlDecode(toAccountKey);
final String fromDecoded = fromAccountKey != null ? ControllerUtil.urlDecode(fromAccountKey) : null;
final String toDecoded = toAccountKey != null ? ControllerUtil.urlDecode(toAccountKey) : null;
if (LOGGER.isDebugEnabled()) {
LOGGER.debug(String.format("GET /transactions/ got parameter: %s, %s, %s, %s, %s, %s, %s - with order %s",