mirror of
https://github.com/zulip/zulip.git
synced 2025-11-13 10:26:28 +00:00
dict, lazy_set: Return an iterator from values method.
Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
committed by
Tim Abbott
parent
45d3be5449
commit
9e1343ff8a
@@ -141,7 +141,7 @@ exports.topic_history = function (stream_id) {
|
||||
};
|
||||
|
||||
self.get_recent_names = function () {
|
||||
const my_recents = topics.values();
|
||||
const my_recents = [...topics.values()];
|
||||
|
||||
const missing_topics = unread.get_missing_topics({
|
||||
stream_id: stream_id,
|
||||
|
||||
Reference in New Issue
Block a user