We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In DXDALRequestHTTP.m there is no response called if resonseString != nil
- (void) didFinishWithResponseString:(NSString *)responseString responseObject:(id)responseObject responseStatusCode:(NSInteger)responseStatusCode { if (responseString != nil) { id result = nil; if (self.parser) { id parsedObject = [self.parser parseString:responseString]; BOOL isStandartMapperWithEntityClass = self.entityClass && [self.mapper isKindOfClass:[DXDALMapperStandart class]]; BOOL isCustomMapper = ![self.mapper isKindOfClass:[DXDALMapperStandart class]]; BOOL canMap = self.mapper && (isStandartMapperWithEntityClass || isCustomMapper); if (canMap) { result = [self.mapper mapFromInputData:parsedObject withClass:self.entityClass]; } else { result = parsedObject; } } else { result = responseString; } } else if ([responseObject isKindOfClass:[NSData class]]) { [self didFinishWithResponse:responseObject]; } }
The text was updated successfully, but these errors were encountered:
use latest version of DXDAL
Sorry, something went wrong.
No branches or pull requests
In DXDALRequestHTTP.m there is no response called if resonseString != nil
The text was updated successfully, but these errors were encountered: