diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-10-11 10:48:36 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-10-11 10:48:36 +0100 |
commit | 9ed8ff6b938e0452d122c68b38cf4fedcd74c0bf (patch) | |
tree | 63a57f55661e2e4347f7e441608bad0d52667c9b /federationapi/routing/state.go | |
parent | 6bf1912525724baa1a8bf5e0bf51524d7cee59ba (diff) |
Tweak federation `M_NOT_FOUND` errors
Diffstat (limited to 'federationapi/routing/state.go')
-rw-r--r-- | federationapi/routing/state.go | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/federationapi/routing/state.go b/federationapi/routing/state.go index 5377eb88..1d08d0a8 100644 --- a/federationapi/routing/state.go +++ b/federationapi/routing/state.go @@ -135,23 +135,24 @@ func getState( return nil, nil, &resErr } - if !response.StateKnown { + switch { + case !response.RoomExists: + return nil, nil, &util.JSONResponse{ + Code: http.StatusNotFound, + JSON: jsonerror.NotFound("Room not found"), + } + case !response.StateKnown: return nil, nil, &util.JSONResponse{ Code: http.StatusNotFound, JSON: jsonerror.NotFound("State not known"), } - } - if response.IsRejected { + case response.IsRejected: return nil, nil, &util.JSONResponse{ Code: http.StatusNotFound, JSON: jsonerror.NotFound("Event not found"), } } - if !response.RoomExists { - return nil, nil, &util.JSONResponse{Code: http.StatusNotFound, JSON: nil} - } - return response.StateEvents, response.AuthChainEvents, nil } |