Skip to content

Commit

Permalink
forgot final modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin committed Jan 4, 2023
1 parent 803a0c6 commit 73f5ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/org/schabi/newpipe/player/Player.java
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ public void onPlayerError(@NonNull final PlaybackException error) {
break;
case ERROR_CODE_FAILED_RUNTIME_CHECK:
// Try to handle tunneling related exceptions
String stackTrace = Log.getStackTraceString(error.getCause());
final String stackTrace = Log.getStackTraceString(error.getCause());
Log.d(TAG, "Unexpected PlaybackException! Cause: " + stackTrace);
if (trackSelector.getParameters().tunnelingEnabled
&& stackTrace.contains("Surface")) {
Expand Down

0 comments on commit 73f5ce0

Please sign in to comment.