Fixed pls file loading.
parent
fe3fd5cb21
commit
2a6d847f70
|
@ -143,6 +143,7 @@
|
||||||
hasScannedForEncodings = 1;
|
hasScannedForEncodings = 1;
|
||||||
mainGroup = 089C166AFE841209C02AAC07 /* M3u */;
|
mainGroup = 089C166AFE841209C02AAC07 /* M3u */;
|
||||||
projectDirPath = "";
|
projectDirPath = "";
|
||||||
|
projectRoot = "";
|
||||||
targets = (
|
targets = (
|
||||||
8D5B49AC048680CD000E48DA /* M3u */,
|
8D5B49AC048680CD000E48DA /* M3u */,
|
||||||
);
|
);
|
||||||
|
|
|
@ -139,9 +139,11 @@
|
||||||
089C1669FE841209C02AAC07 /* Project object */ = {
|
089C1669FE841209C02AAC07 /* Project object */ = {
|
||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "Pls" */;
|
buildConfigurationList = 1DEB913E08733D840010E9CD /* Build configuration list for PBXProject "Pls" */;
|
||||||
|
compatibilityVersion = "Xcode 2.4";
|
||||||
hasScannedForEncodings = 1;
|
hasScannedForEncodings = 1;
|
||||||
mainGroup = 089C166AFE841209C02AAC07 /* Pls */;
|
mainGroup = 089C166AFE841209C02AAC07 /* Pls */;
|
||||||
projectDirPath = "";
|
projectDirPath = "";
|
||||||
|
projectRoot = "";
|
||||||
targets = (
|
targets = (
|
||||||
8D5B49AC048680CD000E48DA /* Pls */,
|
8D5B49AC048680CD000E48DA /* Pls */,
|
||||||
);
|
);
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
if (![scanner scanUpToString:@"=" intoString:&lhs] || // get LHS
|
if (![scanner scanUpToString:@"=" intoString:&lhs] || // get LHS
|
||||||
![scanner scanString:@"=" intoString:nil] || // skip the =
|
![scanner scanString:@"=" intoString:nil] || // skip the =
|
||||||
![scanner scanUpToString:@"" intoString:&rhs] || // get RHS
|
![scanner scanUpToString:@"" intoString:&rhs] || // get RHS
|
||||||
![lhs isEqualToString:@"File"]) // We only want file entries
|
![lhs caseInsensitiveCompare:@"File"]) // We only want file entries
|
||||||
{
|
{
|
||||||
[scanner release];
|
[scanner release];
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in New Issue