Remove duplicate custom feed title in subtitle field (#7855)

This commit is contained in:
Terrance 2025-06-28 14:40:58 +01:00 committed by GitHub
parent e818aefd13
commit b65062d18d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -390,8 +390,7 @@ public class PlaybackService extends MediaBrowserServiceCompat {
MediaDescriptionCompat.Builder builder = new MediaDescriptionCompat.Builder()
.setMediaId("FeedId:" + feed.getId())
.setTitle(feed.getTitle())
.setDescription(feed.getDescription())
.setSubtitle(feed.getCustomTitle());
.setDescription(feed.getDescription());
if (feed.getImageUrl() != null) {
builder.setIconUri(Uri.parse(feed.getImageUrl()));
}