mirror of
https://github.com/aclist/dztui.git
synced 2025-05-11 13:13:01 +02:00
chore: drop pre-boot api check
This commit is contained in:
parent
82d2afb1f2
commit
fbd1a355d5
2 changed files with 4 additions and 7 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [5.6.6] 2024-04-04
|
||||||
|
## Dropped
|
||||||
|
- Removed extraneous pre-boot API checks that could cause error messages to be printed if the user had not set up an API key yet
|
||||||
|
|
||||||
## [5.6.5] 2024-03-04
|
## [5.6.5] 2024-03-04
|
||||||
## Fixed
|
## Fixed
|
||||||
- Livonia server results being dropped from batch queries
|
- Livonia server results being dropped from batch queries
|
||||||
|
|
7
dzgui.sh
7
dzgui.sh
|
@ -876,21 +876,14 @@ get_response_code(){
|
||||||
curl -Ls -I -o /dev/null -w "%{http_code}" "$url"
|
curl -Ls -I -o /dev/null -w "%{http_code}" "$url"
|
||||||
}
|
}
|
||||||
test_connection(){
|
test_connection(){
|
||||||
source "$config_file"
|
|
||||||
declare -A hr
|
declare -A hr
|
||||||
local res1
|
local res1
|
||||||
local res2
|
local res2
|
||||||
local str="No connection could be established to the remote server"
|
local str="No connection could be established to the remote server"
|
||||||
hr=(
|
hr=(
|
||||||
["steampowered.com"]="https://api.steampowered.com/IGameServersService/GetServerList/v1/?key=$steam_api"
|
|
||||||
["github.com"]="https://github.com/$author"
|
["github.com"]="https://github.com/$author"
|
||||||
["codeberg.org"]="https://codeberg.org/$author"
|
["codeberg.org"]="https://codeberg.org/$author"
|
||||||
)
|
)
|
||||||
# steam API is mandatory, except on initial setup
|
|
||||||
if [[ -n $steam_api ]]; then
|
|
||||||
res=$(get_response_code "${hr["steampowered.com"]}")
|
|
||||||
[[ $res -ne 200 ]] && raise_error_and_quit "$str ("steampowered.com")"
|
|
||||||
fi
|
|
||||||
|
|
||||||
res=$(get_response_code "${hr["github.com"]}")
|
res=$(get_response_code "${hr["github.com"]}")
|
||||||
if [[ $res -ne 200 ]]; then
|
if [[ $res -ne 200 ]]; then
|
||||||
|
|
Loading…
Reference in a new issue