1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-09 12:07:20 +00:00

Fix bugs related to notification endpoints (#25548)

This commit is contained in:
Zettat123
2023-06-28 22:26:56 +08:00
committed by GitHub
parent fdab4e3d84
commit defd807073
3 changed files with 4 additions and 4 deletions

View File

@ -132,7 +132,7 @@ func ReadNotifications(ctx *context.APIContext) {
if len(qLastRead) > 0 {
tmpLastRead, err := time.Parse(time.RFC3339, qLastRead)
if err != nil {
ctx.InternalServerError(err)
ctx.Error(http.StatusBadRequest, "Parse", err)
return
}
if !tmpLastRead.IsZero() {