Merge pull request #34 from blumberg/caseInsenstiveCookies

pull/39/head
RandomNinjaAtk 1 year ago committed by GitHub
commit e6d546fede
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -76,7 +76,7 @@ fi
DownloadExtras () {
# Check for cookies file
if find /config -type f -name "cookies.txt" | read; then
if find /config -type f -iname "cookies.txt" | read; then
cookiesFile="$(find /config -type f -iname "cookies.txt" | head -n1)"
log "$itemTitle :: Cookies File Found!"
else

@ -36,7 +36,7 @@ fi
CookiesCheck () {
# Check for cookies file
if find /config -type f -name "cookies.txt" | read; then
if find /config -type f -iname "cookies.txt" | read; then
cookiesFile="$(find /config -type f -iname "cookies.txt" | head -n1)"
log "Cookies File Found!"
else

Loading…
Cancel
Save