From d586203aa5f33818c7a521aaa4dc8a4a374b84cb Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Wed, 4 Dec 2019 11:42:38 +0000 Subject: [PATCH] AS should use the v1 endpoint, rather than r0 --- 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 3c19c8401..0e4bd6bab 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.