fix crash

This commit is contained in:
lishoujun 2019-01-03 09:51:28 +08:00
parent 92396200e2
commit ba0db9c3db

View File

@ -425,11 +425,11 @@ public class VideoPlayActivity extends AppCompatActivity implements VideoRendere
@Override @Override
protected void onDestroy() { protected void onDestroy() {
super.onDestroy();
simpleExoPlayerView.setPlayer(null); simpleExoPlayerView.setPlayer(null);
if (torrentStream != null){ if (torrentStream != null){
torrentStream.stopStream(); torrentStream.stopStream();
} }
super.onDestroy();
Log.v(TAG, "onDestroy..."); Log.v(TAG, "onDestroy...");
} }