diff --git a/Frameworks/RSParser/Utilities/RSDateParser.m b/Frameworks/RSParser/Utilities/RSDateParser.m index 295c459f6..b2a945c99 100755 --- a/Frameworks/RSParser/Utilities/RSDateParser.m +++ b/Frameworks/RSParser/Utilities/RSDateParser.m @@ -108,7 +108,7 @@ static NSInteger nextMonthValue(const char *bytes, NSUInteger numberOfBytes, NSU return NSNotFound; if (monthCharacters[0] == 'J' || monthCharacters[0] == 'j') { //Jan, Jun, Jul - if (monthCharacters[1] == 'a' || monthCharacters[i] == 'A') + if (monthCharacters[1] == 'a' || monthCharacters[1] == 'A') return RSJanuary; if (monthCharacters[1] == 'u' || monthCharacters[1] == 'U') { if (monthCharacters[2] == 'n' || monthCharacters[2] == 'N')