Skip to content

Commit

Permalink
fix #4019
Browse files Browse the repository at this point in the history
  • Loading branch information
CarGuo committed Aug 15, 2024
1 parent 4e8935d commit 83281c1
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,8 @@ public void run() {
if (GSYVideoView.this.mReleaseWhenLossAudio) {
GSYVideoView.this.releaseVideos();
} else {
getGSYVideoManager().listener().onVideoPause();
if(getGSYVideoManager().listener() != null)
getGSYVideoManager().listener().onVideoPause();
}

}
Expand Down

0 comments on commit 83281c1

Please sign in to comment.