From 8a0a31801b73933bf7c4c258ba9272ff411b7e06 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Sat, 11 Apr 2020 18:08:17 -0700 Subject: [PATCH] ircd::m::bridge: Fix type assumption for config elements. --- include/ircd/m/bridge.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/ircd/m/bridge.h b/include/ircd/m/bridge.h index 69b8ff3db..952fb0deb 100644 --- a/include/ircd/m/bridge.h +++ b/include/ircd/m/bridge.h @@ -57,13 +57,13 @@ struct ircd::m::bridge::namespaces :json::tuple < /// Events which are sent from certain users. - json::property, + json::property, /// Events which are sent in rooms with certain room aliases. - json::property, + json::property, /// Events which are sent in rooms with certain room IDs. - json::property + json::property > { using super_type::tuple;