From b9c99fcdb54c9c1f524f86cf60aa3fe38e849f7a Mon Sep 17 00:00:00 2001 From: Lily <1100891+lmontoute@users.noreply.github.com> Date: Tue, 16 Aug 2022 00:06:53 -0500 Subject: [PATCH] Change CdnBaseUrl to CdnFullUrl (match implementation) This PR fixes an issue with the default `appsettings.json` where `CdnBaseUrl` was specified instead of `CdnFullUrl`, which is what is used in the actual project. On self-hosted servers this leads to a failure to download updated files because of an incorrectly specified URL. --- MareSynchronosServer/MareSynchronosServer/appsettings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MareSynchronosServer/MareSynchronosServer/appsettings.json b/MareSynchronosServer/MareSynchronosServer/appsettings.json index dbaa2e8..f7a55db 100644 --- a/MareSynchronosServer/MareSynchronosServer/appsettings.json +++ b/MareSynchronosServer/MareSynchronosServer/appsettings.json @@ -23,7 +23,7 @@ ] } }, - "CdnBaseUrl": "https:///cache/", + "CdnFullUrl": "https:///cache/", "FailedAuthForTempBan": 5, "TempBanDurationInMinutes": 30, "DiscordBotToken": "",