summaryrefslogtreecommitdiffstats
path: root/Classes/AcidCowFeedburnerParser.m
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/AcidCowFeedburnerParser.m')
-rw-r--r--Classes/AcidCowFeedburnerParser.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/Classes/AcidCowFeedburnerParser.m b/Classes/AcidCowFeedburnerParser.m
index 46d7ec5..118aa43 100644
--- a/Classes/AcidCowFeedburnerParser.m
+++ b/Classes/AcidCowFeedburnerParser.m
@@ -15,12 +15,12 @@
- (void)downloadAndParse:(NSURL *)url {
- NSLog(@"downloadAndParse");
self.downloadAndParsePool = [[NSAutoreleasePool alloc] init];
done = NO;
self.parseFormatter = [[[NSDateFormatter alloc] init] autorelease];
[parseFormatter setDateStyle:NSDateFormatterLongStyle];
[parseFormatter setTimeStyle:NSDateFormatterNoStyle];
+ [parseFormatter setDateFormat:@"EEE, d MMM yyyy HH:mm:ss Z"];
// necessary because iTunes RSS feed is not localized, so if the device region has been set to other than US
// the date formatter must be set to US locale in order to parse the dates
[parseFormatter setLocale:[[[NSLocale alloc] initWithLocaleIdentifier:@"US"] autorelease]];
@@ -169,7 +169,7 @@ static NSString *kName_Guid = @"guid";
} else if ([elementName isEqualToString:kName_Guid]) {
currentTopic.guid = currentString;
} else if ([elementName isEqualToString:kName_Creator]) {
- currentTopic.creator = currentString;
+ //currentTopic.creator = currentString;
} else if ([elementName isEqualToString:kName_Description]) {
NSRegularExpression* regex = [NSRegularExpression regularExpressionWithPattern:@"http\\S+(jpg|png|gif|jpeg)"
options:NSRegularExpressionCaseInsensitive