switch to TimelineCache

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-01-19 12:42:41 -08:00
parent e52ba5937f
commit 4b542c0a74
19 changed files with 720 additions and 673 deletions

View File

@@ -473,6 +473,10 @@ fn serialize_route(route: &Route, columns: &Columns) -> Option<String> {
TimelineKind::Universe => {
selections.push(Selection::Keyword(Keyword::Universe))
}
TimelineKind::Thread(root_id) => {
selections.push(Selection::Keyword(Keyword::Thread));
selections.push(Selection::Payload(hex::encode(root_id.bytes())));
}
TimelineKind::Generic => {
selections.push(Selection::Keyword(Keyword::Generic))
}