0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-06-18 12:28:28 +02:00

Escape the create event content key so it can be extracted correctly

This commit is contained in:
Kegan Dougal 2021-01-15 18:49:21 +00:00
parent 2113da5332
commit fdd534f86a

View file

@ -19,6 +19,7 @@ import (
"context"
"fmt"
"net/http"
"strings"
"sync"
"github.com/gorilla/mux"
@ -198,7 +199,8 @@ func (w *walker) walk() *SpacesResponse {
roomType := ""
create := w.stateEvent(roomID, gomatrixserverlib.MRoomCreate, "")
if create != nil {
roomType = gjson.GetBytes(create.Content(), ConstCreateEventContentKey).Str
// escape the `.`s so gjson doesn't think it's nested
roomType = gjson.GetBytes(create.Content(), strings.ReplaceAll(ConstCreateEventContentKey, ".", `\.`)).Str
}
// Add the total number of events to `PublicRoomsChunk` under `num_refs`. Add `PublicRoomsChunk` to `rooms`.