Fix playwire threading

This commit is contained in:
Alexander Meech 2016-10-25 12:42:32 -04:00 committed by Shaun Bennett
parent a36ebf4528
commit 273f95f8ff

View File

@ -106,7 +106,10 @@ public class PlayWireManager extends MiniDbClientPlugin<PlayWireClientData>
{
final int newTickets = rs.getInt(1);
ticketCallback.run(newTickets);
runSync(() ->
{
ticketCallback.run(newTickets);
});
}
}
catch (Exception e)