diff --git a/pkg/auth/auth.go b/pkg/auth/auth.go index be3d4c906..09c6c0ed3 100644 --- a/pkg/auth/auth.go +++ b/pkg/auth/auth.go @@ -102,7 +102,10 @@ func newLocalhostAuth(string) (AuthMode, error) { func newDevAuth(pw string) (AuthMode, error) { // the vivify mode password is automatically set to "vivi" + Password - return &DevAuth{pw, "vivi" + pw}, nil + return &DevAuth{ + Password: pw, + VivifyPass: "vivi" + pw, + }, nil } func newUserPassAuth(arg string) (AuthMode, error) {