This commit is contained in:
Emiel Bruijntjes 2014-07-31 13:11:30 +02:00
commit 42514e80db
1 changed files with 1 additions and 1 deletions

View File

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