Skip to content

Commit

Permalink
Fix a bug in audio playback and bump to 3022 (#1479)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedre authored Oct 30, 2020
1 parent 84471a0 commit 852bd44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {
defaultConfig {
minSdkVersion deps.android.build.minSdkVersion
targetSdkVersion deps.android.build.targetSdkVersion
versionCode 3021
versionCode 3022
versionName "3.0.2"
testInstrumentationRunner "com.quran.labs.androidquran.core.QuranTestRunner"
multiDexEnabled true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ constructor(private val quranDisplayData: QuranDisplayData,
audioPathInfo
}

val (actualStart, actualEnd) = if (start > end) {
val (actualStart, actualEnd) = if (start < end) {
start to end
} else {
Timber.e(
Expand Down

0 comments on commit 852bd44

Please sign in to comment.