mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Notify replication. Use correct network_id
This commit is contained in:
parent
d45c984653
commit
631376e2ac
@ -138,6 +138,7 @@ class RoomStore(SQLBaseStore):
|
|||||||
"set_room_is_public",
|
"set_room_is_public",
|
||||||
set_room_is_public_txn, next_id,
|
set_room_is_public_txn, next_id,
|
||||||
)
|
)
|
||||||
|
self.hs.get_notifier().on_new_replication_data()
|
||||||
|
|
||||||
@defer.inlineCallbacks
|
@defer.inlineCallbacks
|
||||||
def set_room_is_public_appservice(self, room_id, appservice_id, network_id,
|
def set_room_is_public_appservice(self, room_id, appservice_id, network_id,
|
||||||
@ -164,7 +165,7 @@ class RoomStore(SQLBaseStore):
|
|||||||
table="appservice_room_list",
|
table="appservice_room_list",
|
||||||
values={
|
values={
|
||||||
"appservice_id": appservice_id,
|
"appservice_id": appservice_id,
|
||||||
"network_id": "network_id",
|
"network_id": network_id,
|
||||||
"room_id": room_id
|
"room_id": room_id
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
@ -217,6 +218,7 @@ class RoomStore(SQLBaseStore):
|
|||||||
"set_room_is_public_appservice",
|
"set_room_is_public_appservice",
|
||||||
set_room_is_public_appservice_txn, next_id,
|
set_room_is_public_appservice_txn, next_id,
|
||||||
)
|
)
|
||||||
|
self.hs.get_notifier().on_new_replication_data()
|
||||||
|
|
||||||
def get_public_room_ids(self):
|
def get_public_room_ids(self):
|
||||||
return self._simple_select_onecol(
|
return self._simple_select_onecol(
|
||||||
|
Loading…
Reference in New Issue
Block a user