Skip to content

Commit

Permalink
Fix channel topic timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
c99koder committed Jun 17, 2014
1 parent 5092918 commit e9dbe10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion IRCCloud/Classes/NetworkConnection.m
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ -(id)init {
@"channel_topic": ^(IRCCloudJSONObject *object) {
[_events addJSONObject:object];
if(!backlog || _resuming) {
[_channels updateTopic:[object objectForKey:@"topic"] time:object.eid author:[object objectForKey:@"author"] buffer:object.bid];
[_channels updateTopic:[object objectForKey:@"topic"] time:object.eid/1000000 author:[object objectForKey:@"author"] buffer:object.bid];
if(!backlog)
[self postObject:object forEvent:kIRCEventChannelTopic];
}
Expand Down

0 comments on commit e9dbe10

Please sign in to comment.