Update:Android support storing downloads to internal app storage #635

This commit is contained in:
advplyr
2023-06-03 17:24:32 -05:00
parent 87c74fe78b
commit e6aaccfc74
14 changed files with 715 additions and 61 deletions
+4 -1
View File
@@ -181,6 +181,9 @@ export default {
folderName() {
return this.folder?.name
},
isInternalStorage() {
return this.folderId?.startsWith('internal-')
},
mediaType() {
return this.localLibraryItem?.mediaType
},
@@ -227,7 +230,7 @@ export default {
]
} else {
var options = []
if (!this.isIos) {
if (!this.isIos && !this.isInternalStorage) {
options.push({ text: 'Scan', value: 'scan' })
options.push({ text: 'Force Re-Scan', value: 'rescan' })
options.push({ text: 'Remove', value: 'remove' })