stream_data: Rename is_stream_archived function.

Renames `is_stream_archived` function to `is_stream_archived_by_id`.
This commit is contained in:
Vector73
2025-08-05 08:36:51 +00:00
committed by Tim Abbott
parent 47905d7812
commit 6c94266bf9
10 changed files with 19 additions and 17 deletions

View File

@@ -739,7 +739,7 @@ export function get_sidebar_stream_topic_info(filter: Filter): {
return result;
}
if (!stream_data.is_subscribed(stream_id) || stream_data.is_stream_archived(stream_id)) {
if (!stream_data.is_subscribed(stream_id) || stream_data.is_stream_archived_by_id(stream_id)) {
return result;
}