Return 404 if event given to /context was not found (#2245)

This commit is contained in:
Neil Alexander 2022-03-03 17:58:24 +00:00 committed by GitHub
parent 5592322e13
commit 72022a6ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,7 @@ package routing
import (
"database/sql"
"encoding/json"
"fmt"
"net/http"
"strconv"
@ -102,6 +103,12 @@ func Context(
id, requestedEvent, err := syncDB.SelectContextEvent(ctx, roomID, eventID)
if err != nil {
if err == sql.ErrNoRows {
return util.JSONResponse{
Code: http.StatusNotFound,
JSON: jsonerror.NotFound(fmt.Sprintf("Event %s not found", eventID)),
}
}
logrus.WithError(err).WithField("eventID", eventID).Error("unable to find requested event")
return jsonerror.InternalServerError()
}