Fix NullPointerException

This commit is contained in:
Mauricio Colli 2017-04-28 01:07:54 -03:00
parent 6fd6facf72
commit a68e0a95f4

View file

@ -214,7 +214,7 @@ public class VideoDetailFragment extends BaseFragment implements StreamExtractor
// Currently only used for enable/disable related videos
// but can be extended for other live settings changes
if (updateFlags != 0) {
if (!isLoading.get()) {
if (!isLoading.get() && currentStreamInfo != null) {
if ((updateFlags & RELATED_STREAMS_UPDATE_FLAG) != 0) initRelatedVideos(currentStreamInfo);
if ((updateFlags & RESOLUTIONS_MENU_UPDATE_FLAG) != 0) setupActionBarHandler(currentStreamInfo);
}