Skip to content

Commit

Permalink
fix(ios): expose Ti.Network.HTTPClient#getAllResponseHeaders()
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtcoolguy committed Feb 12, 2021
1 parent 2a19caf commit e520aa2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions iphone/Classes/TiNetworkHTTPClientProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,11 @@ - (void)setRequestHeader:(id)args

#pragma mark - Public getter properties

- (NSString *)getAllResponseHeaders:(id)unused
{
return [self allResponseHeaders];
}

- (NSString *)allResponseHeaders
{
NSDictionary *headers = [[self response] headers];
Expand Down

0 comments on commit e520aa2

Please sign in to comment.