mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2026-08-31 15:47:13 +02:00
Update:Android support storing downloads to internal app storage #635
This commit is contained in:
@@ -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' })
|
||||
|
||||
Reference in New Issue
Block a user