We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddd2308 commit 191d2aeCopy full SHA for 191d2ae
zulipterminal/core.py
@@ -645,7 +645,7 @@ def narrow_to_user(
645
) -> None:
646
self._narrow_to(
647
anchor=contextual_message_id,
648
- dm_with=", ".join(recipient_emails),
+ pm_with=", ".join(recipient_emails),
649
)
650
651
def narrow_to_all_messages(
zulipterminal/model.py
@@ -1024,7 +1024,7 @@ def next_unread_topic_from_message_id(
1024
return None
1025
1026
def get_next_unread_pm(self) -> Optional[int]:
1027
- pms = list(self.unread_counts["unread_pms"].keys())
+ pms = list(self.unread_counts["unread_dms"].keys())
1028
next_pm = False
1029
for pm in pms:
1030
if next_pm is True:
0 commit comments