Merge pull request #2 from TinfoilSubmarine/create-posts-on-first-run

Commit on DB object creation to ensure table posts is created
This commit is contained in:
ioistired 2021-09-27 05:42:46 -05:00 committed by GitHub
commit 3d393c7577
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,6 +52,7 @@ class PostFetcher:
self._rl_handler = HandleRateLimits(self._http)
self._db = await stack.enter_async_context(aiosqlite.connect(self.config['db_path']))
await self._maybe_run_migrations()
await self._db.commit()
self._db.row_factory = aiosqlite.Row
self._ctx_stack = stack
return self