mirror of https://github.com/zulip/zulip.git
hotkey: Avoid checking message_lists.current for `narrow_private`.
Since `narrow_private` doesn't need a message for the hotkey to work, there is no need to call do_narrow_actions which needs a selected message id.
This commit is contained in:
parent
de0db7ad1a
commit
861acb9abd
|
@ -929,9 +929,8 @@ export function process_hotkey(e, hotkey) {
|
|||
// Shortcuts that don't require a message
|
||||
switch (event_name) {
|
||||
case "narrow_private":
|
||||
return do_narrow_action((_target, opts) => {
|
||||
narrow.by("is", "dm", opts);
|
||||
});
|
||||
narrow.by("is", "dm", {trigger: "hotkey"});
|
||||
return true;
|
||||
case "query_streams":
|
||||
stream_list.initiate_search();
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue