Fix for issue #12

This commit is contained in:
Martijn Otto 2014-07-31 10:16:55 +02:00
parent 850252e1dd
commit 98aba8f638
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ Deferred &ChannelImpl::push(Deferred *deferred)
Deferred &ChannelImpl::push(const Frame &frame) Deferred &ChannelImpl::push(const Frame &frame)
{ {
// send the frame, and push the result // send the frame, and push the result
return push(new Deferred(send(frame))); return push(new Deferred(!send(frame)));
} }
/** /**