mirror of
https://github.com/zulip/zulip.git
synced 2025-10-22 20:42:14 +00:00
message_flags: Fix type error.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
(cherry picked from commit 33b8eabd9f
)
This commit is contained in:
committed by
Alex Vandiver
parent
1199927a6c
commit
535d9597f7
@@ -38,7 +38,7 @@ def do_mark_all_as_read(user_profile: UserProfile, *, timeout: float | None = No
|
||||
|
||||
# First, we clear mobile push notifications. This is safer in the
|
||||
# event that the below logic times out and we're killed.
|
||||
all_push_message_ids = (
|
||||
all_push_message_ids = list(
|
||||
UserMessage.objects.filter(
|
||||
user_profile=user_profile,
|
||||
)
|
||||
|
Reference in New Issue
Block a user