mirror of https://github.com/zulip/zulip.git
message_store: Fix get_cached_message type.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
fe6744ae54
commit
7a10d8329b
|
@ -149,7 +149,7 @@ export function update_message_cache(message: Message): void {
|
||||||
stored_messages.set(message.id, message);
|
stored_messages.set(message.id, message);
|
||||||
}
|
}
|
||||||
|
|
||||||
export function get_cached_message(message_id: number): Message {
|
export function get_cached_message(message_id: number): Message | undefined {
|
||||||
// You should only call this from message_helper.
|
// You should only call this from message_helper.
|
||||||
// Use the get() wrapper below for most other use cases.
|
// Use the get() wrapper below for most other use cases.
|
||||||
return stored_messages.get(message_id);
|
return stored_messages.get(message_id);
|
||||||
|
|
Loading…
Reference in New Issue