Skip to content

Commit 5fde8e8

Browse files
author
David Catmull
committed
fix a little mistake
1 parent 76c0a97 commit 5fde8e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Model/PBGitStash.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ @implementation PBGitStash
1919
if ((self = [super init])) {
2020
stashRawString = [stashLineFromStashListOutput retain];
2121
NSArray *lineComponents = [stashLineFromStashListOutput componentsSeparatedByString:@":"];
22-
if (lineComponents != 3) {
22+
if ([lineComponents count] != 3) {
2323
[self release];
2424
return nil;
2525
}

0 commit comments

Comments
 (0)