1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2025-06-22 08:24:05 +00:00

Don't add the title when sharing as YouTube temp playlist

This commit is contained in:
Thiago F. G. Albuquerque 2025-03-13 18:16:09 -03:00
parent eb0568044a
commit 098f60d593

View File

@ -411,12 +411,12 @@ public class LocalPlaylistFragment extends BaseLocalListFragment<List<PlaylistSt
.subscribe( .subscribe(
urlsText -> { urlsText -> {
final String content = shareMode == JUST_URLS final String content = shareMode == WITH_TITLES
? urlsText ? context.getString(R.string.share_playlist_content_details,
: context.getString(R.string.share_playlist_content_details,
name, name,
urlsText urlsText
); )
: urlsText;
ShareUtils.shareText(context, name, content); ShareUtils.shareText(context, name, content);
}, },