8000 Update client.py to sort connection issues in current master(v2.8) by ashay88 · Pull Request #7 · hangoutsbot/hangups · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Dec 7, 2018. It is now read-only.

Update client.py to sort connection issues in current master(v2.8) #7

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion hangups/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
'pvt': None, # Populated later
}
CHAT_INIT_REGEX = re.compile(
r"(?:<script>AF_initDataCallback\((.*?)\);</script>)", re.DOTALL
#r"(?:<script>AF_initDataCallback\((.*?)\);</script>)", re.DOTALL
r"(?:<script nonce=\"[a-zA-Z0-9_+/]*\">AF_initDataCallback\((.*?)\);</script>)", re.DOTALL
)
# Timeout to send for setactiveclient requests:
ACTIVE_TIMEOUT_SECS = 120
Expand Down
0