From 482dec773133f41f35df28e69a3f261b78ce2252 Mon Sep 17 00:00:00 2001 From: ItsNotGoodName <35015993+ItsNotGoodName@users.noreply.github.com> Date: Fri, 24 Dec 2021 19:54:26 -0800 Subject: [PATCH] fix: allow anon auth in mockauth --- service/mockauth.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/mockauth.go b/service/mockauth.go index 131ec7f6..91d3c855 100644 --- a/service/mockauth.go +++ b/service/mockauth.go @@ -11,5 +11,5 @@ func (MockAuth) Login(username, password string) error { } func (MockAuth) AnonymousLogin() bool { - return false + return true }