mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +00:00
filter: Use stream id instead of stream name.
This commit is contained in:
@@ -549,7 +549,7 @@ export function initialize_everything(state_data) {
|
||||
[
|
||||
{
|
||||
operator: "stream",
|
||||
operand: sub.name,
|
||||
operand: sub.stream_id.toString(),
|
||||
},
|
||||
],
|
||||
{trigger},
|
||||
@@ -658,7 +658,7 @@ export function initialize_everything(state_data) {
|
||||
const sub = sub_store.get(stream_id);
|
||||
message_view.show(
|
||||
[
|
||||
{operator: "channel", operand: sub.name},
|
||||
{operator: "channel", operand: sub.stream_id.toString()},
|
||||
{operator: "topic", operand: topic},
|
||||
],
|
||||
{trigger: "sidebar"},
|
||||
|
||||
Reference in New Issue
Block a user