Clarified comparison.
This commit is contained in:
parent
4c8630e808
commit
138c575dda
1 changed files with 2 additions and 2 deletions
|
@ -373,7 +373,7 @@
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ([curAlbum caseInsensitiveCompare:origAlbum])
|
if ([curAlbum caseInsensitiveCompare:origAlbum] != NSOrderedSame)
|
||||||
{
|
{
|
||||||
found = YES;
|
found = YES;
|
||||||
break;
|
break;
|
||||||
|
@ -412,7 +412,7 @@
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ([curAlbum caseInsensitiveCompare:origAlbum])
|
if ([curAlbum caseInsensitiveCompare:origAlbum] != NSOrderedSame)
|
||||||
{
|
{
|
||||||
if (foundAlbum == NO)
|
if (foundAlbum == NO)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue