Fix #1218 improper use of callLater

This commit is contained in:
Andrew Resch 2010-04-08 15:00:07 -07:00
parent 8e4d88f03c
commit 4be615b084

View File

@ -160,7 +160,7 @@ class TrackerIcons(component.Component):
self.images[tracker_host] = filename
if callback:
reactor.callLater(0, callback, filename)
reactor.callFromThread(callback, filename)
def get_async(self, tracker_host, callback):
if tracker_host in self.images: