Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
joan-domingo committed Mar 8, 2018
1 parent 75ca9d2 commit b0f8642
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ android {
productFlavors {
rac1 {
applicationId "cat.xojan.random1"
versionCode 36
versionName "3.2.0"
versionCode 37
versionName "3.2.1"
buildConfigField "String", "BASE_URL", "\"http://api.audioteca.rac1.cat/api/app/\""
}
catradio {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class MediaDescriptionCompatJsonAdapter {
extras.putString(PODCAST_FILE_PATH, itemJson.mediaFilePath)
extras.putString(PODCAST_PROGRAM_ID, itemJson.programId)
extras.putString(PODCAST_BIG_IMAGE_URL, itemJson.bigImageUrl)
extras.putLong(PODCAST_DURATION, itemJson.duration!!)
extras.putLong(PODCAST_DURATION, itemJson.duration ?: 0)
extras.putSerializable(PODCAST_DATE, itemJson.date)

return MediaDescriptionCompat.Builder()
Expand Down

0 comments on commit b0f8642

Please sign in to comment.