From f1e229e9d4a6c7f6ad7eda146ec0e3a8a6603af1 Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Fri, 20 Dec 2019 14:44:34 +0000 Subject: [PATCH] AS should use the v1 endpoint, rather than r0 (#827) --- appservice/routing/routing.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.