refactor(indexeddb): re-type IndexedChunkId as u64 as IndexedDB supports numeric keys

Signed-off-by: Michael Goldenberg <m@mgoldenberg.net>
This commit is contained in:
Michael Goldenberg
2025-06-08 21:01:35 -04:00
committed by Ivan Enderlin
parent 717116cc05
commit b55e79fdac

View File

@@ -56,7 +56,7 @@ pub struct IndexedChunk {
pub struct IndexedChunkIdKey(IndexedRoomId, IndexedChunkId);
pub type IndexedRoomId = String;
pub type IndexedChunkId = String;
pub type IndexedChunkId = u64;
pub type IndexedChunkContent = MaybeEncrypted;
/// Represents the [`EVENTS`][1] object store.