Skip to content

Commit

Permalink
6.14.6 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
XilinJia committed Nov 23, 2024
1 parent cd31132 commit 9093c59
Show file tree
Hide file tree
Showing 18 changed files with 439 additions and 516 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
vectorDrawables.useSupportLibrary false
vectorDrawables.generatedDensities = []

versionCode 3020304
versionName "6.14.5"
versionCode 3020305
versionName "6.14.6"

applicationId "ac.mdiq.podcini.R"
def commit = ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ class PlaybackService : MediaLibraryService() {
val item_ = realm.query(Episode::class).query("id == $0", item!!.id).first().find()
if (item_ != null) {
item = upsert(item_) {
it.playState = PlayState.PLAYED.code
if (it.playState < PlayState.PLAYED.code || it.playState == PlayState.IGNORED.code) it.playState = PlayState.PLAYED.code
val media = it.media
if (media != null) {
media.startPosition = playable.startPosition
Expand Down

This file was deleted.

Loading

0 comments on commit 9093c59

Please sign in to comment.