From 0e9411e5593cadd5be3b2887c6f56c3a946b7f44 Mon Sep 17 00:00:00 2001 From: Kegan Dougal Date: Mon, 15 Aug 2016 15:39:15 +0100 Subject: [PATCH] s/Session/Info/ given it isn't an AuthSession object --- src/github.com/matrix-org/go-neb/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.com/matrix-org/go-neb/api.go b/src/github.com/matrix-org/go-neb/api.go index a6fc0c8..55a9599 100644 --- a/src/github.com/matrix-org/go-neb/api.go +++ b/src/github.com/matrix-org/go-neb/api.go @@ -295,6 +295,6 @@ func (h *getSessionHandler) OnIncomingRequest(req *http.Request) (interface{}, * return &struct { ID string Authenticated bool - Session interface{} + Info interface{} }{session.ID(), session.Authenticated(), session.Info()}, nil }