Fix reblogs of reblogs in UI, add follow form in UI
This commit is contained in:
parent
f24cb32e99
commit
d0e2733f63
10 changed files with 113 additions and 21 deletions
|
@ -9,6 +9,8 @@ function updateMatchingStatuses(state, needle, callback) {
|
|||
return list.map(function (status) {
|
||||
if (status.get('id') === needle.get('id')) {
|
||||
return callback(status);
|
||||
} else if (status.getIn(['reblog', 'id'], null) === needle.get('id')) {
|
||||
return status.set('reblog', callback(status.get('reblog')));
|
||||
}
|
||||
|
||||
return status;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue