Ben Copsey

Hopefully fixes a problem where ASIAuthenticationDialog could fail to disappear …

…when dismissed on iPad
[#71 state:resolved]
@@ -224,7 +224,7 @@ static const NSUInteger kDomainSection = 1; @@ -224,7 +224,7 @@ static const NSUInteger kDomainSection = 1;
224 [self retain]; 224 [self retain];
225 [sharedDialog release]; 225 [sharedDialog release];
226 sharedDialog = nil; 226 sharedDialog = nil;
227 - [self presentNextDialog]; 227 + [self performSelector:@selector(presentNextDialog) withObject:nil afterDelay:0];
228 [self release]; 228 [self release];
229 } 229 }
230 230
@@ -24,7 +24,7 @@ @@ -24,7 +24,7 @@
24 #import "ASIDataCompressor.h" 24 #import "ASIDataCompressor.h"
25 25
26 // Automatically set on build 26 // Automatically set on build
27 -NSString *ASIHTTPRequestVersion = @"v1.8-25 2010-12-15"; 27 +NSString *ASIHTTPRequestVersion = @"v1.8-26 2010-12-15";
28 28
29 NSString* const NetworkRequestErrorDomain = @"ASIHTTPRequestErrorDomain"; 29 NSString* const NetworkRequestErrorDomain = @"ASIHTTPRequestErrorDomain";
30 30