mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2025-10-03 17:59:41 +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(
|
.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);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue