🐛 Sometimes the audio or video does not play https://github.com/siyuan-note/siyuan/issues/11810

This commit is contained in:
Daniel 2024-06-28 21:11:52 +08:00
parent 335d390d20
commit 9d08ef3008
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -386,11 +386,7 @@ func Timing(c *gin.Context) {
}
func Recover(c *gin.Context) {
defer func() {
logging.Recover()
c.Status(http.StatusInternalServerError)
}()
defer logging.Recover()
c.Next()
}