🎨 Improve recent doc

Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-11-08 23:11:02 +08:00
parent 1f571ccd55
commit c0e947d2ac
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -293,6 +293,10 @@ func updateRecentDocCloseTime(c *gin.Context) {
return
}
if nil == arg["rootID"] {
return
}
rootID := arg["rootID"].(string)
err := model.UpdateRecentDocCloseTime(rootID)
if err != nil {