Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
Fixed Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
nhCoder committed Jan 25, 2020
1 parent 6d87dc5 commit a3db92d
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 1 deletion.
Binary file modified YoutubeExtractor/app/build/bin/app.apk
Binary file not shown.
Binary file modified YoutubeExtractor/app/build/bin/classes.dex
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ protected Void doInBackground(String[] ids) {

PlayerResponse playerResponse=parseJson(jsonBody);
ytmeta = playerResponse.getVideoDetails();
subtitle=playerResponse.getCaptions().getPlayerCaptionsTracklistRenderer().getCaptionTracks();
subtitle=playerResponse.getCaptions() !=null ? playerResponse .getCaptions().getPlayerCaptionsTracklistRenderer().getCaptionTracks(): null;
//Utils.copyToBoard(jsonBody);
if (playerResponse.getVideoDetails().getisLive()) {
parseLiveUrls(playerResponse.getStreamingData());
Expand Down

0 comments on commit a3db92d

Please sign in to comment.