Browse Source

Fix typo in useful_sql_for_admins.md (#16477)

Laurence Gill 6 months ago
parent
commit
166ffc0f23
2 changed files with 2 additions and 1 deletions
  1. 1 0
      changelog.d/16477.doc
  2. 1 1
      docs/usage/administration/useful_sql_for_admins.md

+ 1 - 0
changelog.d/16477.doc

@@ -0,0 +1 @@
+Fix a typo in the sql for [useful SQL for admins document](https://matrix-org.github.io/synapse/latest/usage/administration/useful_sql_for_admins.html).

+ 1 - 1
docs/usage/administration/useful_sql_for_admins.md

@@ -193,7 +193,7 @@ SELECT rss.room_id, rss.name, rss.canonical_alias, rss.topic, rss.encryption,
     rsc.joined_members, rsc.local_users_in_room, rss.join_rules
   FROM room_stats_state rss
   LEFT JOIN room_stats_current rsc USING (room_id)
-  WHERE room_id IN ( WHERE room_id IN (
+  WHERE room_id IN (
     '!OGEhHVWSdvArJzumhm:matrix.org',
     '!YTvKGNlinIzlkMTVRl:matrix.org' 
   );