missing updates #5

Merged
mats merged 77 commits from refactor/http-proxy into main 2025-10-14 23:12:06 +02:00
Showing only changes of commit 6cb46b4e16 - Show all commits

View File

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