Project import generated by Copybara.

GitOrigin-RevId: 7d603f49704c866d68f88e7d5646ccf1b4b34614
This commit is contained in:
Madari Developers 2025-01-05 13:52:29 +00:00
parent e8e1c5e046
commit 184981281a

View file

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