commit ad58e4b395b456fbabf97061990d99d76bea5cca
parent 435c9151aa597afa40661f044ec452a0902344ed
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Fri, 10 Jan 2025 08:43:19 +0100
fix base url
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmd/taldir-cli/main.go b/cmd/taldir-cli/main.go
@@ -52,7 +52,7 @@ func main() {
log.Fatalf("Failed to read config: %v", err)
os.Exit(1)
}
- host := _cfg.Section("taldir").Key("host").MustString("http://localhost")
+ host := _cfg.Section("taldir").Key("base_url").MustString("http://localhost")
if *solveFlag {
if len(*challengeFlag) == 0 || len(*pubkeyFlag) == 0 {
fmt.Println("You need to provide an activation challenge and a public key to generate a solution")