Fix lambda code formatting
Co-authored-by: Stypox <stypox@pm.me>
This commit is contained in:
parent
baee915db5
commit
3ff00ff50e
|
@ -62,30 +62,23 @@ public enum StreamDialogEntry {
|
||||||
* Info: Add this entry within showStreamDialog.
|
* Info: Add this entry within showStreamDialog.
|
||||||
*/
|
*/
|
||||||
enqueue(R.string.enqueue_stream, (fragment, item) -> {
|
enqueue(R.string.enqueue_stream, (fragment, item) -> {
|
||||||
fetchItemInfoIfSparse(fragment, item,
|
fetchItemInfoIfSparse(fragment, item, fullItem ->
|
||||||
fullItem -> NavigationHelper.enqueueOnPlayer(fragment.getContext(), fullItem)
|
NavigationHelper.enqueueOnPlayer(fragment.getContext(), fullItem));
|
||||||
);
|
|
||||||
}),
|
}),
|
||||||
|
|
||||||
enqueue_next(R.string.enqueue_next_stream, (fragment, item) -> {
|
enqueue_next(R.string.enqueue_next_stream, (fragment, item) -> {
|
||||||
fetchItemInfoIfSparse(fragment, item,
|
fetchItemInfoIfSparse(fragment, item, fullItem ->
|
||||||
fullItem -> NavigationHelper.enqueueNextOnPlayer(fragment.getContext(), fullItem)
|
NavigationHelper.enqueueNextOnPlayer(fragment.getContext(), fullItem));
|
||||||
);
|
|
||||||
}),
|
}),
|
||||||
|
|
||||||
start_here_on_background(R.string.start_here_on_background, (fragment, item) -> {
|
start_here_on_background(R.string.start_here_on_background, (fragment, item) -> {
|
||||||
fetchItemInfoIfSparse(fragment, item,
|
fetchItemInfoIfSparse(fragment, item, fullItem ->
|
||||||
fullItem -> {
|
NavigationHelper.playOnBackgroundPlayer(fragment.getContext(), fullItem, true));
|
||||||
NavigationHelper.playOnBackgroundPlayer(fragment.getContext(),
|
|
||||||
fullItem, true);
|
|
||||||
});
|
|
||||||
}),
|
}),
|
||||||
|
|
||||||
start_here_on_popup(R.string.start_here_on_popup, (fragment, item) -> {
|
start_here_on_popup(R.string.start_here_on_popup, (fragment, item) -> {
|
||||||
fetchItemInfoIfSparse(fragment, item, fullItem -> {
|
fetchItemInfoIfSparse(fragment, item, fullItem ->
|
||||||
NavigationHelper.playOnPopupPlayer(fragment.getContext(),
|
NavigationHelper.playOnPopupPlayer(fragment.getContext(), fullItem, true));
|
||||||
fullItem, true);
|
|
||||||
});
|
|
||||||
}),
|
}),
|
||||||
|
|
||||||
set_as_playlist_thumbnail(R.string.set_as_playlist_thumbnail, (fragment, item) -> {
|
set_as_playlist_thumbnail(R.string.set_as_playlist_thumbnail, (fragment, item) -> {
|
||||||
|
|
Loading…
Reference in New Issue