From b7b62bf9eac3f1f92a4913cfdf1f568752dcf8c0 Mon Sep 17 00:00:00 2001
From: Erik Johnston <erik@matrix.org>
Date: Fri, 16 Sep 2016 11:00:29 +0100
Subject: [PATCH] Comment

---
 synapse/handlers/room_list.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/synapse/handlers/room_list.py b/synapse/handlers/room_list.py
index ec0a293a37..f15987b265 100644
--- a/synapse/handlers/room_list.py
+++ b/synapse/handlers/room_list.py
@@ -220,6 +220,8 @@ class RoomListHandler(BaseHandler):
 
         chunk.sort(key=lambda e: (-e["num_joined_members"], e["room_id"]))
 
+        # Work out the new limit of the batch for pagination, or None if we
+        # know there are no more results that would be returned.
         new_limit = None
         if chunk and (not limit or len(chunk) > limit):
             if limit:
-- 
GitLab