Skip to content

Commit

Permalink
delete downloaded audio files when removing tracks
Browse files Browse the repository at this point in the history
  • Loading branch information
shadow578 committed Sep 18, 2021
1 parent e1ae83e commit f9d24cc
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import io.github.shadow578.yodel.db.TracksDB
import io.github.shadow578.yodel.db.model.*
import io.github.shadow578.yodel.ui.base.BaseFragment
import io.github.shadow578.yodel.util.*
import io.github.shadow578.yodel.util.storage.decodeToFile
import io.github.shadow578.yodel.util.storage.decodeToUri

/**
Expand Down Expand Up @@ -80,6 +81,13 @@ class TracksFragment : BaseFragment() {
) { track: TrackInfo ->

launchIO {
// remove the file
track.audioFileKey.decodeToFile(this@TracksFragment.requireContext())?.delete()

// remove the cover
track.coverKey.decodeToFile(this@TracksFragment.requireContext())?.delete()

// remove from DB
TracksDB.get(this@TracksFragment.requireContext()).tracks()
.remove(track)
}
Expand Down

0 comments on commit f9d24cc

Please sign in to comment.