#17 Period overview: add Actions
This commit is contained in:
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user