Skip to content

Commit

Permalink
Project import generated by Copybara.
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 7d603f49704c866d68f88e7d5646ccf1b4b34614
  • Loading branch information
Madari Developers committed Jan 5, 2025
1 parent e8e1c5e commit 1849812
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lib/features/connections/widget/base/render_stream_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,12 @@ class _RenderStreamListState extends State<RenderStreamList> {

return ListTile(
title: Text(item.title),
subtitle: item.description == null ? null : Text(item.description!),
subtitle: item.description == null && item.streamSource == null
? null
: Text(
"${item.description ?? ""}\n---\n${item.streamSource?.title}"
.trim(),
),
trailing: (item.source is MediaURLSource)
? _buildDownloadButton(
context,
Expand Down

0 comments on commit 1849812

Please sign in to comment.