Skip to content

Commit

Permalink
[Issue #26] Removing UDID default header from AFRestClient
Browse files Browse the repository at this point in the history
  • Loading branch information
mattt committed Sep 15, 2011
1 parent c8ee535 commit a0c5707
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions AFNetworking/AFRestClient.m
Expand Up @@ -60,9 +60,6 @@ - (id)init {
// User-Agent Header; see http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.43
[self setDefaultHeader:@"User-Agent" value:[NSString stringWithFormat:@"%@/%@ (%@, %@ %@, %@, Scale/%f)", [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleIdentifierKey], [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString *)kCFBundleVersionKey], @"unknown", [[UIDevice currentDevice] systemName], [[UIDevice currentDevice] systemVersion], [[UIDevice currentDevice] model], ([[UIScreen mainScreen] respondsToSelector:@selector(scale)] ? [[UIScreen mainScreen] scale] : 1.0)]];

// X-UDID HTTP Header
[self setDefaultHeader:@"X-UDID" value:[[UIDevice currentDevice] uniqueIdentifier]];

return self;
}

Expand Down

0 comments on commit a0c5707

Please sign in to comment.