Browse Source

fix(stn): add case if the password was not set in the config (#3578)

pull/3584/head
Christian 4 years ago
committed by GitHub
parent
commit
565f99e9e8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      lgsm/functions/info_game.sh

3
lgsm/functions/info_game.sh

@ -1741,6 +1741,9 @@ fn_info_game_stn(){
port=$(sed -nr 's/^ServerPort=([0-9]+)/\1/p' "${servercfgfullpath}")
serverpassword=$(sed -nr 's/^ServerPassword=(.*)$/\1/p' "${servercfgfullpath}")
queryport=$((port + 1))
# Not set
serverpassword=${serverpassword:-"NOT SET"}
else
servername="${unavailable}"
configip=${configip:-"0.0.0.0"}

Loading…
Cancel
Save