From dbd46decad5f47208171b73949714d9dcb1a87b1 Mon Sep 17 00:00:00 2001
From: Brendan Abolivier <babolivier@matrix.org>
Date: Thu, 22 Aug 2019 14:47:43 +0100
Subject: [PATCH] Revert "Do not send consent notices if "no-consent-required"
 is set"

This reverts commit 27a686e53b8ba3f2e2f102fae73e598c00ec0086.
---
 synapse/server_notices/consent_server_notices.py | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/synapse/server_notices/consent_server_notices.py b/synapse/server_notices/consent_server_notices.py
index 8e82ee32b2..415e9c17d8 100644
--- a/synapse/server_notices/consent_server_notices.py
+++ b/synapse/server_notices/consent_server_notices.py
@@ -80,10 +80,6 @@ class ConsentServerNotices(object):
         try:
             u = yield self._store.get_user_by_id(user_id)
 
-            if u["consent_version"] == "no-consent-required":
-                # user is exempt
-                return
-
             if u["is_guest"] and not self._send_to_guests:
                 # don't send to guests
                 return
-- 
GitLab