stream_list: Remove unused parameter passed to rename_stream.

This commit is contained in:
evykassirer 2024-11-18 16:55:08 -08:00 committed by Tim Abbott
parent 919cebe0f9
commit ffef153a14
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ export function update_stream_name(sub, new_name) {
const stream_id = sub.stream_id; const stream_id = sub.stream_id;
// Update the left sidebar. // Update the left sidebar.
stream_list.rename_stream(sub, new_name); stream_list.rename_stream(sub);
// Update the stream settings // Update the stream settings
stream_edit.update_stream_name(sub, new_name); stream_edit.update_stream_name(sub, new_name);