Fix a nasty bug with playlists

This commit is contained in:
Matéo Duparc 2021-09-01 19:58:51 +02:00
parent b65ac79175
commit 52eab2a2df
Signed by: hardcoresushi
GPG Key ID: 007F84120107191E
1 changed files with 3 additions and 1 deletions

View File

@ -14,6 +14,7 @@ import sushi.hardcore.droidfs.widgets.ColoredAlertDialogBuilder
abstract class FileViewerActivity: BaseActivity() {
protected lateinit var gocryptfsVolume: GocryptfsVolume
protected lateinit var filePath: String
private lateinit var originalParentPath: String
private var isFinishingIntentionally = false
private var usf_keep_open = false
private var foldersFirst = true
@ -24,6 +25,7 @@ abstract class FileViewerActivity: BaseActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
filePath = intent.getStringExtra("path")!!
originalParentPath = PathUtils.getParentPath(filePath)
val sessionID = intent.getIntExtra("sessionID", -1)
gocryptfsVolume = GocryptfsVolume(sessionID)
usf_keep_open = sharedPrefs.getBoolean("usf_keep_open", false)
@ -102,7 +104,7 @@ abstract class FileViewerActivity: BaseActivity() {
protected fun createPlaylist() {
if (!wasMapped){
for (e in gocryptfsVolume.recursiveMapFiles(PathUtils.getParentPath(filePath))){
for (e in gocryptfsVolume.recursiveMapFiles(originalParentPath)) {
if (e.isRegularFile) {
if (ConstValues.isExtensionType(getFileType(), e.name) || filePath == e.fullPath) {
mappedPlaylist.add(e)