Update app/src/main/java/org/schabi/newpipe/local/holder/RemotePlaylistItemHolder.java

Co-Authored-By: Redirion <redirion@web.de>
This commit is contained in:
Peter Hindes 2019-12-10 12:13:04 -07:00 committed by GitHub
parent d8e6a5cb33
commit 19fb8cfbfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ public class RemotePlaylistItemHolder extends PlaylistItemHolder {
itemTitleView.setText(item.getName());
itemStreamCountView.setText(String.valueOf(item.getStreamCount()));
// Here is where the uploader name is set in the bookmarked playlists library
if (item.getUploader() != null) {
if (!TextUtils.isEmpty(item.getUploader)) {
itemUploaderView.setText(Localization.concatenateStrings(item.getUploader(),
NewPipe.getNameOfService(item.getServiceId())));
} else {