[Issue #29] Fixing operationWithRequest:inputStream:outputStream:completion: to actually assign outputStream

This commit is contained in:
Mattt Thompson 2011-09-15 10:22:15 -05:00
parent 78f1928f4a
commit c8ee535ccc

View file

@ -154,6 +154,8 @@ static NSThread *_networkRequestThread = nil;
} }
}]; }];
operation.outputStream = outputStream;
return operation; return operation;
} }