diff options
Diffstat (limited to 'http_global.go')
-rw-r--r-- | http_global.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/http_global.go b/http_global.go index 0790b3c..f793c24 100644 --- a/http_global.go +++ b/http_global.go @@ -5,8 +5,8 @@ package main // globalData is passed as "global" when rendering HTML templates. var globalData = map[string]any{ - "server_public_key_string": &server_public_key_string, - "server_public_key_fingerprint": &server_public_key_fingerprint, + "server_public_key_string": &serverPubkeyString, + "server_public_key_fingerprint": &serverPubkeyFP, "forge_version": VERSION, // Some other ones are populated after config parsing } |