filter: Use stream id instead of stream name.

This commit is contained in:
evykassirer
2024-08-02 18:05:34 -07:00
committed by Tim Abbott
parent 2be181c367
commit dba1af84e0
38 changed files with 760 additions and 592 deletions

View File

@@ -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"},