diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-11-15 08:02:11 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 08:02:11 -0500 |
commit | f2f2c7c1f05de87f43cc2d18d5dc9bd636b3ed0a (patch) | |
tree | 5eb6479eac5d7199c7c3104aa539e51e34a4bac7 /synapse/handlers/sync.py | |
parent | Improve documentation for `/_synapse/admin/v1/rooms/<room_id>/timestamp_to_ev... (diff) | |
download | synapse-f2f2c7c1f05de87f43cc2d18d5dc9bd636b3ed0a.tar.xz |
Use full GitHub links instead of bare issue numbers. (#16637)
Diffstat (limited to 'synapse/handlers/sync.py')
-rw-r--r-- | synapse/handlers/sync.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/handlers/sync.py b/synapse/handlers/sync.py index 2f1bc5a015..bf0106c6e7 100644 --- a/synapse/handlers/sync.py +++ b/synapse/handlers/sync.py @@ -399,7 +399,7 @@ class SyncHandler: # # If that happens, we mustn't cache it, so that when the client comes back # with the same cache token, we don't immediately return the same empty - # result, causing a tightloop. (#8518) + # result, causing a tightloop. (https://github.com/matrix-org/synapse/issues/8518) if result.next_batch == since_token: cache_context.should_cache = False @@ -1003,7 +1003,7 @@ class SyncHandler: # always make sure we LL ourselves so we know we're in the room # (if we are) to fix https://github.com/vector-im/riot-web/issues/7209 # We only need apply this on full state syncs given we disabled - # LL for incr syncs in #3840. + # LL for incr syncs in https://github.com/matrix-org/synapse/pull/3840. # We don't insert ourselves into `members_to_fetch`, because in some # rare cases (an empty event batch with a now_token after the user's # leave in a partial state room which another local user has |