This commit is contained in:
Nolan Lawson 2018-03-11 10:49:18 -07:00
parent 217aca3d31
commit e397bf3b3b

View file

@ -97,7 +97,8 @@ async function getStatusThread (instanceName, statusId) {
} else { } else {
// thread not cached; just make a "fake" thread with only one status in it // thread not cached; just make a "fake" thread with only one status in it
fetchStatus(statusesStore, accountsStore, statusId, status => { fetchStatus(statusesStore, accountsStore, statusId, status => {
callback([status]) let res = [status]
callback(res)
}) })
} }
} }