Skip to content

Commit

Permalink
Fix Warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
CyrilPeponnet committed Mar 23, 2016
1 parent 220801d commit 71c3826
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ArchipelClient/Controllers/TNPushCenter.j
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ var __defaultPushCenter;
pushDate = [[aStanza firstChildWithName:@"push"] valueForAttribute:@"date"], pushDate = [[aStanza firstChildWithName:@"push"] valueForAttribute:@"date"],
pushChange = [[aStanza firstChildWithName:@"push"] valueForAttribute:@"change"], pushChange = [[aStanza firstChildWithName:@"push"] valueForAttribute:@"change"],
infoDict = @{ infoDict = @{
@"owner" :nodeOwner, @"owner" :nodeOwner ? nodeOwner : @"",
@"type" :pushType, @"type" :pushType ? pushType : @"",
@"date" :pushDate, @"date" :pushDate ? pushDate : @"",
@"change" :pushChange, @"change" :pushChange ? pushChange : @"",
@"rawStanza":aStanza @"rawStanza":aStanza
}; };


Expand Down

0 comments on commit 71c3826

Please sign in to comment.