mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-31 07:13:00 +00:00 
			
		
		
		
	Merge pull request #232 from DevFactory/release/null-pointer-should-not-be-dereferenced-fix-1
Code quality fix - Null pointers should not be dereferenced.
This commit is contained in:
		| @@ -40,7 +40,7 @@ public class AudioStream { | ||||
|  | ||||
|     // revelas wether two streams are equal | ||||
|     public boolean equals(AudioStream cmp) { | ||||
|         return equalStats(cmp) | ||||
|         return cmp != null && equalStats(cmp) | ||||
|                 && url == cmp.url; | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -38,7 +38,7 @@ public class VideoStream { | ||||
|  | ||||
|     // revelas wether two streams are equal | ||||
|     public boolean equals(VideoStream cmp) { | ||||
|         return equalStats(cmp) | ||||
|         return cmp != null && equalStats(cmp) | ||||
|                 && url == cmp.url; | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -599,7 +599,7 @@ public class YoutubeStreamExtractor extends StreamExtractor { | ||||
|     public String getAverageRating() throws ParsingException { | ||||
|         try { | ||||
|             if (playerArgs == null) { | ||||
|                 videoInfoPage.get("avg_rating"); | ||||
|                 return videoInfoPage.get("avg_rating"); | ||||
|             } | ||||
|             return playerArgs.getString("avg_rating"); | ||||
|         } catch (JSONException e) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Christian Schabesberger
					Christian Schabesberger