This commit is contained in:
Nolan Lawson 2018-03-11 10:49:18 -07:00
parent 217aca3d31
commit e397bf3b3b
1 changed files with 2 additions and 1 deletions

View File

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