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:
advplyr 2022-04-20 17:49:34 -05:00
parent 1c6cd7499b
commit ff294867f8
2 changed files with 8 additions and 7 deletions

View file

@ -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') {