diff options
author | Kegsay <kegan@matrix.org> | 2020-06-04 14:27:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-04 14:27:10 +0100 |
commit | f4c676ccddcd661b7167e8f249f71635a0b03491 (patch) | |
tree | 104562c774958f297ec9b2d0c822818926a9c260 /cmd/dendritejs | |
parent | f7025d349946aae75160491d0efcc87100adb406 (diff) |
Refactor how federationsender gets created (#1095)
* Refactor how federationsender gets created
* s/httpint/inthttp/ for alphabetical niceness with internal package
Diffstat (limited to 'cmd/dendritejs')
-rw-r--r-- | cmd/dendritejs/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/dendritejs/main.go b/cmd/dendritejs/main.go index c1aef44d..4c1b8197 100644 --- a/cmd/dendritejs/main.go +++ b/cmd/dendritejs/main.go @@ -235,7 +235,7 @@ func main() { base.PublicAPIMux, base.InternalAPIMux, cfg, - base.EnableHTTPAPIs, + base.UseHTTPAPIs, ) // Expose the matrix APIs via libp2p-js - for federation traffic |