Skip to content

Commit

Permalink
Fix infinite recursion in applyReplayGain
Browse files Browse the repository at this point in the history
  • Loading branch information
daneren2005 committed Jan 15, 2016
1 parent 00d91d4 commit 28092dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="github.daneren2005.dsub"
android:installLocation="internalOnly"
android:versionCode="170"
android:versionCode="171"
android:versionName="5.1.3">

<instrumentation android:name="android.test.InstrumentationTestRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,11 @@ else if(k.equals("TXXX")) {
if(endValue != -1) {
parts.add(txData[1].substring(endName + 1, endValue));
nextStartIndex = endValue + 1;
} else {
break;
}
} else {
break;
}

startName = txData[1].toLowerCase(Locale.US).indexOf("replaygain_", nextStartIndex);
Expand Down

0 comments on commit 28092dc

Please sign in to comment.