fix bug in db cleanup

hashtags
Nolan Lawson 2018-01-21 17:26:16 -08:00
rodzic 4b04cc92f1
commit 8e81926076
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -47,7 +47,8 @@ export const cleanupOldStatuses = debounce(async () => {
if (type !== 'timeline') {
continue
}
await cleanup(instanceName, dbName)
let timeline = dbName.split('_').slice(-1)
await cleanup(instanceName, timeline)
}
}
if (process.env.NODE_ENV !== 'production') {