aboutsummaryrefslogtreecommitdiff
path: root/src/nostr_service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/nostr_service.cpp')
-rw-r--r--src/nostr_service.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nostr_service.cpp b/src/nostr_service.cpp
index 0409a0d..7efc11e 100644
--- a/src/nostr_service.cpp
+++ b/src/nostr_service.cpp
@@ -129,7 +129,7 @@ tuple<RelayList, RelayList> NostrService::publishEvent(Event event)
for (const string& relay : this->_activeRelays)
{
future<tuple<string, bool>> publishFuture = async([this, &relay, &event]() {
- return this->_client->send(event.serialize(), relay);
+ return this->_client->send(event.serialize(this->_signer), relay);
});
publishFutures.push_back(move(publishFuture));