From 0ab043f33099a5b4054b9067dbeaa50f8555a077 Mon Sep 17 00:00:00 2001 From: Jake Taylor <jake@elixxir.io> Date: Mon, 27 Feb 2023 15:10:44 -0600 Subject: [PATCH] fixed pubKey DM index --- indexedDb/impl/dm/model.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/indexedDb/impl/dm/model.go b/indexedDb/impl/dm/model.go index 9b0b99e8..191326d5 100644 --- a/indexedDb/impl/dm/model.go +++ b/indexedDb/impl/dm/model.go @@ -24,13 +24,13 @@ const ( // Message index names. messageStoreMessageIndex = "message_id_index" - messageStoreConversationIndex = "conversation_id_index" + messageStoreConversationIndex = "conversation_pub_key_index" messageStoreParentIndex = "parent_message_id_index" messageStoreTimestampIndex = "timestamp_index" // Message keyPath names (must match json struct tags). messageStoreMessage = "message_id" - messageStoreConversation = "conversation_id" + messageStoreConversation = "conversation_pub_key" messageStoreParent = "parent_message_id" messageStoreTimestamp = "timestamp" ) -- GitLab