diff options
author | Will Hunt <will@half-shot.uk> | 2019-12-20 14:44:34 +0000 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2019-12-20 14:44:34 +0000 |
commit | f1e229e9d4a6c7f6ad7eda146ec0e3a8a6603af1 (patch) | |
tree | 27a531e29a9abbb7e980a0af97de5141094fac57 /appservice | |
parent | e2d73855ebdb236aaa4388685872792ba3907925 (diff) |
AS should use the v1 endpoint, rather than r0 (#827)
Diffstat (limited to 'appservice')
-rw-r--r-- | appservice/routing/routing.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appservice/routing/routing.go b/appservice/routing/routing.go index 3c19c840..0e4bd6ba 100644 --- a/appservice/routing/routing.go +++ b/appservice/routing/routing.go @@ -27,7 +27,7 @@ import ( "github.com/matrix-org/util" ) -const pathPrefixApp = "/_matrix/app/r0" +const pathPrefixApp = "/_matrix/app/v1" // Setup registers HTTP handlers with the given ServeMux. It also supplies the given http.Client // to clients which need to make outbound HTTP requests. |