Browse Source

fix #119 regex failing when ; in summary

pull/121/head
Rossen Georgiev 8 years ago
parent
commit
154be14dd8
  1. 2
      steam/steamid.py

2
steam/steamid.py

@ -370,7 +370,7 @@ def steam64_from_url(url, http_timeout=30):
# user profiles
if match.group('type') in ('id', 'profiles'):
text = web.get(match.group('clean_url'), timeout=http_timeout).text
data_match = re.search("g_rgProfileData = (?P<json>.*?);", text)
data_match = re.search("g_rgProfileData = (?P<json>{.*?});[ \t\r]*\n", text)
if data_match:
data = json.loads(data_match.group('json'))

Loading…
Cancel
Save