v3.7 - Typo fix

#181
This commit is contained in:
RandomNinjaAtk 2024-02-07 10:57:45 +00:00 committed by GitHub
parent c67d72522c
commit 76c02a3344
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,5 @@
#!/usr/bin/with-contenv bash #!/usr/bin/with-contenv bash
scriptVersion="3.6" scriptVersion="3.7"
scriptName="Video" scriptName="Video"
### Import Settings ### Import Settings
@ -13,7 +13,7 @@ verifyConfig () {
fi fi
if [ -z "$disableImvd" ]; then if [ -z "$disableImvd" ]; then
disableImvd="fasle" disableImvd="false"
fi fi
if [ "$enableVideo" != "true" ]; then if [ "$enableVideo" != "true" ]; then
@ -22,7 +22,7 @@ verifyConfig () {
sleep infinity sleep infinity
fi fi
if [ "$disableImvd" = "true" ]; then if [ "$disableImvd" != "true" ]; then
log "Script is not enabled, enable by setting disableImvd to \"false\" by modifying the \"/config/extended.conf\" config file..." log "Script is not enabled, enable by setting disableImvd to \"false\" by modifying the \"/config/extended.conf\" config file..."
log "Sleeping (infinity)" log "Sleeping (infinity)"
sleep infinity sleep infinity