From 5990fc5ac4b324905c2ca88f06a66407e6488ce4 Mon Sep 17 00:00:00 2001 From: 7w1 Date: Sun, 17 May 2026 10:53:28 -0500 Subject: [PATCH 1/2] Enhance stable mutual rooms endpoint support Manually ported from upstream commit by ajbura. --- .changeset/stable-mutual-rooms-endpoint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/stable-mutual-rooms-endpoint.md b/.changeset/stable-mutual-rooms-endpoint.md index 4c19da8db..d6e1048b0 100644 --- a/.changeset/stable-mutual-rooms-endpoint.md +++ b/.changeset/stable-mutual-rooms-endpoint.md @@ -2,4 +2,4 @@ default: patch --- -Add support for stable mutual rooms endpoint. +Add support for stable mutual rooms endpoint, manually ported from [this commit](https://github.com/cinnyapp/cinny/commit/bef267257a28b3be8a96852fed1718f63cf570f9) by ajbura upstream. From 3ef2a3fa47e2d870e874ce4a0f739bb5a9f27784 Mon Sep 17 00:00:00 2001 From: 7w1 Date: Sun, 17 May 2026 10:57:47 -0500 Subject: [PATCH 2/2] attribution comment --- src/app/hooks/useMutualRooms.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/hooks/useMutualRooms.ts b/src/app/hooks/useMutualRooms.ts index 7d95d7b2a..9764c8cc2 100644 --- a/src/app/hooks/useMutualRooms.ts +++ b/src/app/hooks/useMutualRooms.ts @@ -17,6 +17,8 @@ export const useUnstableMutualRoomsSupport = (): boolean => { return !!supported; }; +// Mutual rooms detection and fetching ported from Cinny +// Original by ajbura here https://github.com/cinnyapp/cinny/commit/bef267257a28b3be8a96852fed1718f63cf570f9 export const useMutualRoomsSupport = (): boolean => { const { unstable_features: unstableFeatures, versions } = useSpecVersions();