async append to log
Some checks failed
Build and Publish / Metadata (push) Successful in 9s
Build and Publish / BuildAndDeployAmd64 (push) Has started running
Build and Publish / BuildAndDeployArm64 (push) Has been cancelled

This commit is contained in:
matst80
2025-10-12 23:28:05 +02:00
parent 4e4d5371ec
commit 6cb46b4e16

View File

@@ -236,7 +236,7 @@ func (c *CartGrain) Apply(content interface{}, isReplay bool) (*CartGrain, error
if updated != nil && !isReplay { if updated != nil && !isReplay {
c.lastChange = time.Now() c.lastChange = time.Now()
c.lastAccess = time.Now() c.lastAccess = time.Now()
_ = AppendCartEvent(c.Id, content) go AppendCartEvent(c.Id, content)
} }
return updated, nil return updated, nil