We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wallet.InsertWalletOf
wallet.GetWalletOf(uid)
plugin/score/sign_in.go:142
go func() { err = wallet.InsertWalletOf(uid, add) if err != nil { ctx.SendChain(message.Text("ERROR: ", err)) return } }() alldata := &scdata{ drawedfile: drawedFile, picfile: picFile, uid: uid, nickname: ctx.CardOrNickName(uid), inc: add, score: wallet.GetWalletOf(uid), level: level, rank: rank, }
The text was updated successfully, but these errors were encountered:
fix:[score]修复签到图片余额为0(FloatTech#978)
bf53a5b
fa8d4df
fix(score): 签到图片余额为0(#978) (#979)
7d5c770
现在的sqlite实现较为原始,后续考虑彻底升级到gorm。
Sorry, something went wrong.
No branches or pull requests
wallet.InsertWalletOf
的时候使用了异步执行,锁表了。导致wallet.GetWalletOf(uid)
因为表被锁了执行异常。可能是因为改提交给api加了锁导致了这个问题。
plugin/score/sign_in.go:142
The text was updated successfully, but these errors were encountered: