mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 07:13:00 +00:00 
			
		
		
		
	Added not null check for thumbnail URL before performing comparison
This commit is contained in:
		| @@ -160,7 +160,8 @@ public final class PlaylistAppendDialog extends PlaylistDialog { | |||||||
|                 .subscribe(ignored -> { |                 .subscribe(ignored -> { | ||||||
|                     successToast.show(); |                     successToast.show(); | ||||||
|  |  | ||||||
|                     if (playlist.thumbnailUrl.equals(PlaylistEntity.DEFAULT_THUMBNAIL)) { |                     if (playlist.thumbnailUrl != null | ||||||
|  |                             && playlist.thumbnailUrl.equals(PlaylistEntity.DEFAULT_THUMBNAIL)) { | ||||||
|                         playlistDisposables.add(manager |                         playlistDisposables.add(manager | ||||||
|                                 .changePlaylistThumbnail(playlist.getUid(), streams.get(0).getUid(), |                                 .changePlaylistThumbnail(playlist.getUid(), streams.get(0).getUid(), | ||||||
|                                         false) |                                         false) | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Jacob Hawkins
					Jacob Hawkins