diff --git a/bin/mastodon-data.js b/bin/mastodon-data.js index a1c8f3aa..22e2cf0e 100644 --- a/bin/mastodon-data.js +++ b/bin/mastodon-data.js @@ -13,6 +13,7 @@ function unrollThread (user, prefix, privacy, thread) { post: { internalId: prefix + key, text: key, + privacy: privacy, inReplyTo: parentKey && (prefix + parentKey) } }) diff --git a/tests/spec/009-threads.js b/tests/spec/009-threads.js index 8cb2b6c4..28471a63 100644 --- a/tests/spec/009-threads.js +++ b/tests/spec/009-threads.js @@ -73,7 +73,7 @@ test('Forked threads look correct online and offline', async t => { .hover(getFirstVisibleStatus()) await navigateToBazAccount(t) await validateForkedThread(t) - await t.navigateTo('/') + await t.navigateTo('/') // clears in-memory cache while still preserving IDB cache .hover(getFirstVisibleStatus()) await navigateToBazAccount(t) await forceOffline()