v1.8 - bug fix for detecting non split albums setting and typo fix
This commit is contained in:
parent
7198c4e3f6
commit
84bc23ff0d
1 changed files with 7 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/with-contenv bash
|
#!/usr/bin/with-contenv bash
|
||||||
TITLESHORT="APP"
|
TITLESHORT="APP"
|
||||||
scriptVersion="1.7"
|
scriptVersion="1.8"
|
||||||
scriptName="Audio"
|
scriptName="Audio"
|
||||||
|
|
||||||
#### Import Settings
|
#### Import Settings
|
||||||
|
@ -71,11 +71,11 @@ Main () {
|
||||||
log "Audio Quality Match Verification: DISABLED"
|
log "Audio Quality Match Verification: DISABLED"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "${DetectNonSplitAlubms}" = TRUE ]; then
|
if [ "${DetectNonSplitAlbums}" = TRUE ]; then
|
||||||
log "Detect Non Split Alubms: ENABLED"
|
log "Detect Non Split Albums: ENABLED"
|
||||||
log "Max File Size: $MaxFileSize"
|
log "Max File Size: $MaxFileSize"
|
||||||
else
|
else
|
||||||
log "DetectNonSplitAlubms: DISABLED"
|
log "DetectNonSplitAlbums: DISABLED"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
log "Processing: $1"
|
log "Processing: $1"
|
||||||
|
@ -269,7 +269,9 @@ Main () {
|
||||||
|
|
||||||
settings "$1"
|
settings "$1"
|
||||||
clean "$1"
|
clean "$1"
|
||||||
detectsinglefilealbums "$1"
|
if [ "${DetectNonSplitAlbums}" = TRUE ]; then
|
||||||
|
detectsinglefilealbums "$1"
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "${AudioVerification}" = TRUE ]; then
|
if [ "${AudioVerification}" = TRUE ]; then
|
||||||
verify "$1"
|
verify "$1"
|
||||||
|
|
Loading…
Reference in a new issue