mirror of
https://github.com/zulip/zulip.git
synced 2025-11-15 03:11:54 +00:00
message_fetch: Pass msg_list to load_messages_for_narrow.
This tweak makes the code easier to reason about and may also help generalize the codebase to support maintaining multiple message lists.
This commit is contained in:
@@ -292,13 +292,11 @@ export function load_messages(opts, attempt = 1) {
|
||||
}
|
||||
|
||||
export function load_messages_for_narrow(opts) {
|
||||
const msg_list = message_list.narrowed;
|
||||
|
||||
load_messages({
|
||||
anchor: opts.anchor,
|
||||
num_before: consts.narrow_before,
|
||||
num_after: consts.narrow_after,
|
||||
msg_list,
|
||||
msg_list: opts.msg_list,
|
||||
cont: opts.cont,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user