mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-21 21:53:43 +00:00
Improved error message for invalid protocol in adlist download
Signed-off-by: Sebastian Dinator <sdinator@alumnos.uai.cl> Signed-off-by: Sebastián Dinator <sdinator@alumnos.uai.cl>
This commit is contained in:
parent
1a4870690b
commit
0e7706ffa3
1 changed files with 3 additions and 1 deletions
|
@ -598,7 +598,9 @@ gravity_DownloadBlocklistFromUrl() {
|
|||
|
||||
# Check for allowed protocols
|
||||
if [[ $url != "http"* && $url != "https"* && $url != "file"* && $url != "ftp"* && $url != "ftps"* && $url != "sftp"* ]]; then
|
||||
echo -e "${OVER} ${CROSS} ${str} Invalid protocol specified, ignoring list"
|
||||
echo -e "${OVER} ${CROSS} ${str} Invalid protocol specified. Ignoring list."
|
||||
echo -e " Ensure your URL starts with a valid protocol like http:// or https:// ."
|
||||
echo -e " E.g., try http://localhost/adblock.txt instead of localhost/adblock.txt."
|
||||
download=false
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue