Browse Source

Workaround for parsing GoldSource mod responses without a mod section

async v1.1.2
Gabriel Huber 5 years ago
parent
commit
daf690799f
  1. 3
      a2s/info.py
  2. 4
      setup.py

3
a2s/info.py

@ -229,7 +229,8 @@ def parse_goldsrc(reader):
resp.password_protected = reader.read_bool() resp.password_protected = reader.read_bool()
resp.is_mod = reader.read_bool() resp.is_mod = reader.read_bool()
if resp.is_mod: # Some games don't send this section
if resp.is_mod and len(reader.peek()) > 2:
resp.mod_website = reader.read_cstring() resp.mod_website = reader.read_cstring()
resp.mod_download = reader.read_cstring() resp.mod_download = reader.read_cstring()
reader.read(1) # Skip a NULL byte reader.read(1) # Skip a NULL byte

4
setup.py

@ -7,7 +7,7 @@ with open("README.md", "r") as readme:
setuptools.setup( setuptools.setup(
name="python-a2s", name="python-a2s",
version="1.1.1", version="1.1.2",
author="Gabriel Huber", author="Gabriel Huber",
author_email="[email protected]", author_email="[email protected]",
description="Query Source and GoldSource servers for name, map, players and more.", description="Query Source and GoldSource servers for name, map, players and more.",
@ -23,5 +23,5 @@ setuptools.setup(
"Operating System :: OS Independent", "Operating System :: OS Independent",
"Topic :: Games/Entertainment" "Topic :: Games/Entertainment"
], ],
python_requires=">=3.5" python_requires=">=3.6"
) )

Loading…
Cancel
Save