summary refs log tree commit diff
path: root/synapse/handlers
diff options
context:
space:
mode:
authorAmber Brown <hawkowl@atleastfornow.net>2018-10-29 23:57:24 +1100
committerGitHub <noreply@github.com>2018-10-29 23:57:24 +1100
commit4cd1c9f2ffa46bc8ed258da200ae3b8ba25fcbb5 (patch)
treebd545de1924d74d69093eefcc350524dbc31822d /synapse/handlers
parentMerge pull request #4100 from matrix-org/rav/room_upgrade_avatar (diff)
downloadsynapse-4cd1c9f2ffa46bc8ed258da200ae3b8ba25fcbb5.tar.xz
Delete the disused & unspecced identicon functionality (#4106)
Diffstat (limited to 'synapse/handlers')
-rw-r--r--synapse/handlers/register.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/synapse/handlers/register.py b/synapse/handlers/register.py
index 7b4549223f..d2beb275cf 100644
--- a/synapse/handlers/register.py
+++ b/synapse/handlers/register.py
@@ -256,9 +256,6 @@ class RegistrationHandler(BaseHandler):
             except Exception as e:
                 logger.error("Failed to join new user to %r: %r", r, e)
 
-        # We used to generate default identicons here, but nowadays
-        # we want clients to generate their own as part of their branding
-        # rather than there being consistent matrix-wide ones, so we don't.
         defer.returnValue((user_id, token))
 
     @defer.inlineCallbacks