Fixed up Pls reading so it doesn't try including any old entry with an =.
parent
545e658192
commit
5080a71c4e
|
@ -108,7 +108,7 @@
|
|||
if (![scanner scanUpToString:@"=" intoString:&lhs] || // get LHS
|
||||
![scanner scanString:@"=" intoString:nil] || // skip the =
|
||||
![scanner scanUpToString:@"" intoString:&rhs] || // get RHS
|
||||
![lhs caseInsensitiveCompare:@"File"]) // We only want file entries
|
||||
[lhs rangeOfString:@"File" options:NSCaseInsensitiveSearch|NSAnchoredSearch].location == NSNotFound) // We only want file entries
|
||||
{
|
||||
[scanner release];
|
||||
continue;
|
||||
|
|
Loading…
Reference in New Issue