1 files changed, 2 insertions, 2 deletions
diff --git a/MatrixRoomUtils.Web/Classes/RoomInfo.cs b/MatrixRoomUtils.Web/Classes/RoomInfo.cs
index 4df81ec..111bfe0 100644
--- a/MatrixRoomUtils.Web/Classes/RoomInfo.cs
+++ b/MatrixRoomUtils.Web/Classes/RoomInfo.cs
@@ -11,10 +11,10 @@ public class RoomInfo {
public async Task<StateEventResponse?> GetStateEvent(string type, string stateKey = "") {
var @event = StateEvents.FirstOrDefault(x => x.Type == type && x.StateKey == stateKey);
if (@event is not null) return @event;
- @event = new StateEventResponse() {
+ @event = new StateEventResponse {
RoomId = Room.RoomId,
Type = type,
- StateKey = stateKey,
+ StateKey = stateKey
};
try {
@event.TypedContent = await Room.GetStateAsync<object>(type, stateKey);
|