1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 03:53:01 +02:00

Empty delete server array when returning

This commit is contained in:
aclist 2022-10-04 15:26:42 +09:00
parent 48545ce384
commit 6e0eeef733
2 changed files with 13 additions and 9 deletions

View file

@ -5,7 +5,10 @@
- Custom query API
- Standardize dialogs
## [2.7.0-rc.24] 2022-10-03
## [2.7.0-rc.26] 2022-10-04
### Fixed
- Delete server list array not being emptied when going back to main menu
### Added
- Progress bars when downloading updates
### Changed

View file

@ -1,7 +1,7 @@
#!/bin/bash
set -o pipefail
version=2.7.0-rc.25
version=2.7.0-rc.26
aid=221100
game="dayz"
@ -527,7 +527,7 @@ fetch_ip_metadata(){
test_steam_api(){
local code=$(curl -ILs "https://api.steampowered.com/IGameServersService/GetServerList/v1/?filter=\appid\221100&limit=10&key=$steam_api" \
| grep -E "^HTTP")
[[ $code =~ 403 ]] && { echo 403 >> logs; return 1; }
[[ $code =~ 403 ]] && return 1
}
add_steam_api(){
[[ ! $(test_steam_api) ]] && return 1
@ -1161,12 +1161,12 @@ page_through(){
parse_json(){
page=$(echo "$list_response" | jq -r '.links.next?')
if [[ $first_entry -eq 1 ]]; then
list=$(echo "$list_response" | jq -r '.data[] .attributes | "\(.name)\t\(.ip):\(.port)\t\(.players)/\(.maxPlayers)\t\(.details.time)\t\(.status)\t\(.id)"')
local list=$(echo "$list_response" | jq -r '.data[] .attributes | "\(.name)\t\(.ip):\(.port)\t\(.players)/\(.maxPlayers)\t\(.details.time)\t\(.status)\t\(.id)"')
idarr+=("$list")
first_entry=0
fi
if [[ "$page" != "null" ]]; then
list=$(echo "$list_response" | jq -r '.data[] .attributes | "\(.name)\t\(.ip):\(.port)\t\(.players)/\(.maxPlayers)\t\(.details.time)\t\(.status)\t\(.id)"')
local list=$(echo "$list_response" | jq -r '.data[] .attributes | "\(.name)\t\(.ip):\(.port)\t\(.players)/\(.maxPlayers)\t\(.details.time)\t\(.status)\t\(.id)"')
idarr+=("$list")
page_through
else
@ -1185,6 +1185,7 @@ check_ping(){
fi
}
create_array(){
rows=()
list=$(cat $tmp)
#TODO: improve error handling for null values
lc=1