Skip to content

Commit

Permalink
Merge pull request #4 from shadow578/fix/remove_downloaded_tracks
Browse files Browse the repository at this point in the history
Automatically Delete files when removing in the app
  • Loading branch information
shadow578 authored Oct 6, 2021
2 parents e1ae83e + f9d24cc commit f3c360d
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 f3c360d

Please sign in to comment.