Will have to split the string at the '=', not at the '?'. And let's just hope that that'll always be the only place...

This commit is contained in:
Klaus-Uwe Mitterer 2016-08-06 20:07:03 +02:00
parent 99333ec4e7
commit e0cd78ade3

View file

@ -42,7 +42,7 @@ def login():
return True
def messageID(url):
return url.split("?")[1]
return url.split("=")[1]
def messageHandler(mid, driver):
loadPage("https://www.planetromeo.com/msg/?id=" + mid, driver=driver)