feat(transaction-recurring): #100 fix database lock bug
All checks were successful
Build Docker Image / Build-Docker-Image (push) Successful in 4m52s
Build and Push Docker Image / Build-And-Push-Docker-Image (push) Successful in 4m38s

This commit was merged in pull request #137.
This commit is contained in:
2025-05-29 00:54:30 +02:00
parent 76da3ca703
commit 9bb0cc475d
3 changed files with 14 additions and 11 deletions

View File

@@ -200,7 +200,7 @@ func (h TransactionImpl) handleUpdateTransaction() http.HandlerFunc {
var transaction *types.Transaction
if idStr == "new" {
transaction, err = h.s.Add(user, input)
transaction, err = h.s.Add(nil, user, input)
if err != nil {
handleError(w, r, err)
return