aboutsummaryrefslogtreecommitdiff
path: root/eduserver/api/input.go
diff options
context:
space:
mode:
Diffstat (limited to 'eduserver/api/input.go')
-rw-r--r--eduserver/api/input.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/eduserver/api/input.go b/eduserver/api/input.go
index be2d4c56..999a5b41 100644
--- a/eduserver/api/input.go
+++ b/eduserver/api/input.go
@@ -18,7 +18,7 @@ import (
"errors"
"net/http"
- commonHTTP "github.com/matrix-org/dendrite/common/http"
+ internalHTTP "github.com/matrix-org/dendrite/internal/http"
"github.com/matrix-org/gomatrixserverlib"
opentracing "github.com/opentracing/opentracing-go"
)
@@ -80,5 +80,5 @@ func (h *httpEDUServerInputAPI) InputTypingEvent(
defer span.Finish()
apiURL := h.eduServerURL + EDUServerInputTypingEventPath
- return commonHTTP.PostJSON(ctx, span, h.httpClient, apiURL, request, response)
+ return internalHTTP.PostJSON(ctx, span, h.httpClient, apiURL, request, response)
}