mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-10 01:15:06 +02:00
Fix library folder check if folder exists and if not then attempt to create folder and set permissions, fix library folder check for changes before saving
This commit is contained in:
parent
1c6cd7499b
commit
ff294867f8
2 changed files with 8 additions and 7 deletions
|
@ -142,7 +142,7 @@ export default {
|
|||
var updatePayload = {}
|
||||
for (const key in this.libraryCopy) {
|
||||
if (key === 'folders') {
|
||||
if (this.libraryCopy.folders.join(',') !== this.library.folders.join(',')) {
|
||||
if (this.libraryCopy.folders.map((f) => f.fullPath).join(',') !== this.library.folders.map((f) => f.fullPath).join(',')) {
|
||||
updatePayload.folders = [...this.libraryCopy.folders]
|
||||
}
|
||||
} else if (key === 'settings') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue