From b8431c776d0c704b437754e6a8d13d6c3b863b06 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 25 May 2020 16:20:11 -0400 Subject: [PATCH] fix: fix addFilter to not have topic for now --- src/status/chat.nim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/status/chat.nim b/src/status/chat.nim index 9c01daf85d..e99c57e566 100644 --- a/src/status/chat.nim +++ b/src/status/chat.nim @@ -13,7 +13,8 @@ proc loadFilters*(chatId: string, filterId: string = "", symKeyId: string = "", "SymKeyID": symKeyId, # symmetric key id used for symmetric filters "OneToOne": oneToOne, # if asymmetric encryption is used for this chat "Identity": identity, # public key of the other recipient for non-public filters. - "Topic": topic, # whisper topic + # FIXME: passing empty string to the topic makes it error + # "Topic": topic, # whisper topic "Discovery": discovery, "Negotiated": negotiated, "Listen": listen # whether we are actually listening for messages on this chat, or the filter is only created in order to be able to post on the topic