github is the worst fucking program to ever be ma

aids
This commit is contained in:
MallocNull 2014-10-19 16:27:26 -05:00
parent 17dcdbcf1c
commit 21917ee901

View file

@ -23,8 +23,8 @@ namespace bot {
List<IWebElement> chatdata = d.FindElement(By.Id("chatList")).FindElements(By.TagName("div")).ToList();
messageDivSize = chatdata.Count;
foreach(IWebElement we in chatdata) {
if(Int32.Parse(we.GetAttribute("id").Substring(11)) > currentMessage)
currentMessage = Int32.Parse(we.GetAttribute("id").Substring(11));
if(Int32.Parse(we.GetAttribute("id").Substring(we.GetAttribute("id").LastIndexOf('_') + 1)) > currentMessage)
currentMessage = Int32.Parse(we.GetAttribute("id").Substring(we.GetAttribute("id").LastIndexOf('_') + 1));
}
Console.WriteLine("got here");
break;