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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
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"} |
|
|
|