fix bug in db cleanup

This commit is contained in:
Nolan Lawson 2018-01-21 17:26:16 -08:00
parent 4b04cc92f1
commit 8e81926076

View file

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