-Fixed toast exception on playlist creation.

This commit is contained in:
John Zhen Mo 2018-01-18 11:02:06 -08:00
parent 9bd26798b6
commit 168ac91ab8
1 changed files with 4 additions and 3 deletions

View File

@ -78,12 +78,13 @@ public class PlaylistCreationDialog extends DialogFragment {
new LocalPlaylistManager(NewPipeDatabase.getInstance(getContext()));
final List<StreamEntity> streams =
Collections.singletonList(new StreamEntity(streamInfo));
final Toast successToast = Toast.makeText(getActivity(),
"Playlist " + name + " successfully created",
Toast.LENGTH_SHORT);
playlistManager.createPlaylist(name, streams)
.observeOn(AndroidSchedulers.mainThread())
.subscribe(longs -> Toast.makeText(getActivity(),
"Playlist " + name + " successfully created",
Toast.LENGTH_SHORT).show());
.subscribe(longs -> successToast.show());
});
return dialogBuilder.create();