From ddd438247484879f50aa4db6176dcbac3a1bf336 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Sun, 29 Sep 2013 04:05:09 +1000 Subject: [PATCH] Handle actorTask messages --- client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client.go b/client.go index c34574fd..54cf853c 100644 --- a/client.go +++ b/client.go @@ -220,6 +220,8 @@ func (me *client) run() { } case infoHash := <-me.torrentFinished: delete(me.torrents, infoHash) + case task := <-me.actorTask: + task() } } } -- 2.48.1