diff --git a/routes/_database/timelines.js b/routes/_database/timelines.js index ae2a5e66..3d72e316 100644 --- a/routes/_database/timelines.js +++ b/routes/_database/timelines.js @@ -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) }) } }