diff options
author | Kegsay <kegan@matrix.org> | 2020-06-23 13:15:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-23 13:15:15 +0100 |
commit | 914f6cadceebad98ed2a3f134437531a1426fc30 (patch) | |
tree | b28669455d59bef1a95e78a90180bc3b84e92735 /go.mod | |
parent | 4220a374cabbc1a885d9c79037fcf42e14fef677 (diff) |
Add /send restrictions and return correct error codes (#1156)
* Add /send restrictions and return correct error codes
- Max 50 PDUs / 100 EDUs
- Fail the transaction when PDUs contain bad JSON
* Update whitelist
* Unbreak test
* Linting
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -20,7 +20,7 @@ require ( github.com/matrix-org/go-http-js-libp2p v0.0.0-20200518170932-783164aeeda4 github.com/matrix-org/go-sqlite3-js v0.0.0-20200522092705-bc8506ccbcf3 github.com/matrix-org/gomatrix v0.0.0-20190528120928-7df988a63f26 - github.com/matrix-org/gomatrixserverlib v0.0.0-20200617141855-5539854e4abc + github.com/matrix-org/gomatrixserverlib v0.0.0-20200623103809-13ff8109e137 github.com/matrix-org/naffka v0.0.0-20200422140631-181f1ee7401f github.com/matrix-org/util v0.0.0-20190711121626-527ce5ddefc7 github.com/mattn/go-sqlite3 v2.0.2+incompatible @@ -38,7 +38,6 @@ require ( github.com/yggdrasil-network/yggdrasil-go v0.3.15-0.20200530233943-aec82d7a391b go.uber.org/atomic v1.4.0 golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d - golang.org/x/mobile v0.0.0-20200329125638-4c31acba0007 // indirect gopkg.in/h2non/bimg.v1 v1.0.18 gopkg.in/yaml.v2 v2.2.8 ) |