Fixed Topzone vote detection.

Contributed by andrei.
This commit is contained in:
MobiusDevelopment
2020-01-03 00:29:15 +00:00
parent c1dd29d0b4
commit 8a9763a20a
34 changed files with 34 additions and 34 deletions

View File

@ -56,7 +56,7 @@ public class Topzone extends VoteSystem
String line;
while ((line = br.readLine()) != null)
{
return Integer.parseInt(line);
return Integer.parseInt(line.split("fa-thumbs-up\"></i>")[1].split("</span>")[0]);
}
br.close();