From 59907314544eaf5d1cc7108029b91035486ce892 Mon Sep 17 00:00:00 2001 From: handlerug Date: Thu, 24 Jun 2021 15:07:25 +0700 Subject: [PATCH] Fix a typo --- files/files.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/files.go b/files/files.go index 0d9072e..ea80df1 100644 --- a/files/files.go +++ b/files/files.go @@ -69,7 +69,7 @@ func PrepareWikiRoot() error { paths.tokensJSON = filepath.Join(paths.cacheDir, "tokens.json") paths.fixedCredentialsJSON = filepath.Join(cfg.WikiDir, "fixed-users.json") - paths.registrationCredentialsJSON = filepath.Join(paths.cacheDir, "registered-users.json") + paths.registrationCredentialsJSON = filepath.Join(cfg.WikiDir, "registered-users.json") return nil }