Debugging

This commit is contained in:
Eugen Rochko 2016-10-18 01:38:32 +02:00
parent 225ce8cfce
commit f8b9b0810d

View file

@ -45,7 +45,7 @@ const assembleStatus = (id, statuses, accounts) => {
}
}
console.log('assembly for status', id, reblog.toJS());
console.log('assembly for status', id, Immutable.Map.isMap(reblog) ? reblog.toJS() : reblog);
return status.set('reblog', reblog).set('account', accounts.get(status.get('account')));
};