mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-30 23:03:00 +00:00 
			
		
		
		
	Merge pull request #3902 from wb9688/null-description
Check for description == null
This commit is contained in:
		| @@ -1018,7 +1018,7 @@ public class VideoDetailFragment extends BaseStateFragment<StreamInfo> | ||||
|     } | ||||
|  | ||||
|     private void prepareDescription(final Description description) { | ||||
|         if (TextUtils.isEmpty(description.getContent()) | ||||
|         if (description == null || TextUtils.isEmpty(description.getContent()) | ||||
|                 || description == Description.emptyDescription) { | ||||
|             return; | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Tobias Groza
					Tobias Groza