use the correct base URL

This commit is contained in:
Alfred Kamanda 2024-11-20 18:45:37 +03:00
parent a766f0c01f
commit 7c346e2af0
Signed by: Alfred-mk
GPG Key ID: 7EA3D01708908703

View File

@ -68,7 +68,7 @@ func LoadConfig() error {
VoucherHoldingsURL, _ = url.JoinPath(dataURLBase, voucherHoldingsPathPrefix)
VoucherTransfersURL, _ = url.JoinPath(dataURLBase, voucherTransfersPathPrefix)
VoucherDataURL, _ = url.JoinPath(dataURLBase, voucherDataPathPrefix)
CheckAliasURL, _ = url.JoinPath(custodialURLBase, AliasPrefix)
CheckAliasURL, _ = url.JoinPath(dataURLBase, AliasPrefix)
return nil
}