diff --git a/changelog.d/11378.feature b/changelog.d/11378.feature new file mode 100644 index 000000000000..524bf84f323e --- /dev/null +++ b/changelog.d/11378.feature @@ -0,0 +1 @@ +Allow guests to send state events per [MSC3419](/~https://github.com/matrix-org/matrix-doc/pull/3419). \ No newline at end of file diff --git a/synapse/rest/client/room.py b/synapse/rest/client/room.py index 03a353d53c2c..0cd5d5c98467 100644 --- a/synapse/rest/client/room.py +++ b/synapse/rest/client/room.py @@ -187,7 +187,7 @@ async def on_PUT( state_key: str, txn_id: Optional[str] = None, ) -> Tuple[int, JsonDict]: - requester = await self.auth.get_user_by_req(request) + requester = await self.auth.get_user_by_req(request, allow_guest=True) if txn_id: set_tag("txn_id", txn_id)