Skip to content

Commit

Permalink
Merge branch 'michaelnew-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
kfatehi committed Sep 21, 2018
2 parents 51b2d9b + 49c067d commit 836acf0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ichat2json/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ int main(int argc, const char * argv[]) {
NSMutableArray *ims = [NSMutableArray array];
NSMutableSet *people = [NSMutableSet set];
for (id object in root) {
if ([object isKindOfClass:[NSMutableArray class]]) {
if ([object isKindOfClass:[NSArray class]]) {
for (id sub in object) {
if ([sub isKindOfClass:[InstantMessage class]]) {
InstantMessage *im = (InstantMessage *) sub;
Expand Down

0 comments on commit 836acf0

Please sign in to comment.