diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2022-03-16 14:21:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-16 14:21:11 +0000 |
commit | e30aa38fb0d4ebe4ccc2adcbcdf3211b9a1d3ec7 (patch) | |
tree | cd4d41b6d6113dcc9f12f42da7350dec24731dc8 /clientapi | |
parent | 485367fcfa2fe25bf7ba3edab2a1f099ad4dd867 (diff) |
Stream tweaks, use same codepath for sync vs async input room events, wait for error response via NATS messages (#2283)
Diffstat (limited to 'clientapi')
-rw-r--r-- | clientapi/clientapi.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clientapi/clientapi.go b/clientapi/clientapi.go index 91847667..e4279c22 100644 --- a/clientapi/clientapi.go +++ b/clientapi/clientapi.go @@ -49,7 +49,7 @@ func AddPublicRoutes( extRoomsProvider api.ExtraPublicRoomsProvider, mscCfg *config.MSCs, ) { - js := jetstream.Prepare(&cfg.Matrix.JetStream) + js, _ := jetstream.Prepare(&cfg.Matrix.JetStream) syncProducer := &producers.SyncAPIProducer{ JetStream: js, |