Compare commits

...

1 Commits

Author SHA1 Message Date
Yang Luo
f565dbf7f5 fix: fix bug in dryRunParam of /add-transaction API 2025-11-25 20:38:09 +08:00

View File

@@ -175,7 +175,7 @@ func (c *ApiController) AddTransaction() {
return
}
dryRunParam := c.Input().Get("dryRun")
dryRunParam := c.Input().Get("dryrun")
dryRun := dryRunParam != ""
affected, transactionId, err := object.AddTransaction(&transaction, c.GetAcceptLanguage(), dryRun)