More debugging

This commit is contained in:
Eugen Rochko
2016-10-18 01:22:28 +02:00
parent f3e5625d2d
commit dd02fc0ec4
2 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@ const assembleStatus = (id, statuses, accounts) => {
if (status.get('reblog', null) !== null) {
reblog = statuses.get(status.get('reblog'), null);
if (reblog !== null) {
if (Immutable.Map.isMap(reblog)) {
reblog = reblog.set('account', accounts.get(reblog.get('account')));
} else {
return null;