Don't send null in joined_rooms response (#1659)
parent
50963b724b
commit
65ff5c9a2c
|
@ -111,6 +111,9 @@ func GetJoinedRooms(
|
|||
util.GetLogger(req.Context()).WithError(err).Error("QueryRoomsForUser failed")
|
||||
return jsonerror.InternalServerError()
|
||||
}
|
||||
if res.RoomIDs == nil {
|
||||
res.RoomIDs = []string{}
|
||||
}
|
||||
return util.JSONResponse{
|
||||
Code: http.StatusOK,
|
||||
JSON: getJoinedRoomsResponse{res.RoomIDs},
|
||||
|
|
Loading…
Reference in New Issue