mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2025-10-03 09:49:21 +02:00
Don't add the title when sharing as YouTube temp playlist
This commit is contained in:
parent
eb0568044a
commit
098f60d593
1 changed files with 4 additions and 4 deletions
|
@ -411,12 +411,12 @@ public class LocalPlaylistFragment extends BaseLocalListFragment<List<PlaylistSt
|
|||
.subscribe(
|
||||
urlsText -> {
|
||||
|
||||
final String content = shareMode == JUST_URLS
|
||||
? urlsText
|
||||
: context.getString(R.string.share_playlist_content_details,
|
||||
final String content = shareMode == WITH_TITLES
|
||||
? context.getString(R.string.share_playlist_content_details,
|
||||
name,
|
||||
urlsText
|
||||
);
|
||||
)
|
||||
: urlsText;
|
||||
|
||||
ShareUtils.shareText(context, name, content);
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue