diff --git a/ROADMAP.md b/ROADMAP.md index d19ca52b..55608edf 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,14 +1,11 @@ # Current - [ ] Refactor - - [ ] Rename room to channel - [ ] Delete messages when leaving a room - - [ ] Convert watch to take the table object instead of its name - - [ ] Add userEvents and fill out isUserEvent - [ ] Add pagination to chat/dms - [ ] Fix scrolling to to when modal is open - - [ ] Change pool to take urls, not relay objects - [ ] Take connection health into account when building hints + - [ ] Re-apply filter to get rid of unwanted events - [ ] Test migration - [ ] Add custom emoji support - [ ] Fork and white label blowater diff --git a/src/app/App.svelte b/src/app/App.svelte index 697162f2..2b6b0797 100644 --- a/src/app/App.svelte +++ b/src/app/App.svelte @@ -19,7 +19,7 @@ fetchJson, tryFetch, } from "src/util/misc" - import {onReady} from "src/agent/db" + import {onReady} from "src/util/loki" import * as system from "src/system" import pool from "src/agent/pool" import {loadAppData} from "src/app/state" diff --git a/src/app/Routes.svelte b/src/app/Routes.svelte index ffe103db..55c66a34 100644 --- a/src/app/Routes.svelte +++ b/src/app/Routes.svelte @@ -1,7 +1,7 @@