mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2024-10-01 11:49:51 -04:00
Merge pull request #3753 from matrix-org/erikj/fix_no_server_noticse
Fix bug where we broke sync when using limit_usage_by_mau
This commit is contained in:
commit
92d50e3c2a
1
changelog.d/3753.bugfix
Normal file
1
changelog.d/3753.bugfix
Normal file
@ -0,0 +1 @@
|
|||||||
|
Fix bug where we broke sync when using limit_usage_by_mau but hadn't configured server notices
|
@ -66,6 +66,10 @@ class ResourceLimitsServerNotices(object):
|
|||||||
if self._config.limit_usage_by_mau is False:
|
if self._config.limit_usage_by_mau is False:
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if not self._server_notices_manager.is_enabled():
|
||||||
|
# Don't try and send server notices unles they've been enabled
|
||||||
|
return
|
||||||
|
|
||||||
timestamp = yield self._store.user_last_seen_monthly_active(user_id)
|
timestamp = yield self._store.user_last_seen_monthly_active(user_id)
|
||||||
if timestamp is None:
|
if timestamp is None:
|
||||||
# This user will be blocked from receiving the notice anyway.
|
# This user will be blocked from receiving the notice anyway.
|
||||||
|
Loading…
Reference in New Issue
Block a user