From e0cd78ade3bded9ff951ede6feef58a784e69434 Mon Sep 17 00:00:00 2001 From: Klaus-Uwe Mitterer Date: Sat, 6 Aug 2016 20:07:03 +0200 Subject: [PATCH] Will have to split the string at the '=', not at the '?'. And let's just hope that that'll always be the only place... --- messages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messages.py b/messages.py index 9474816..9162906 100755 --- a/messages.py +++ b/messages.py @@ -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)