From 3183c45f7b82c47649c8556c66be364298e2aa16 Mon Sep 17 00:00:00 2001 From: Jason Naylor Date: Wed, 3 Apr 2024 16:20:44 -0700 Subject: [PATCH] Stop displaying cloud-api in the Upload to Webonary Dialog * Resolves LT-20228, users were confused by the cloud-api in the url and showing www makes it more clear what they should type --- Src/xWorks/UploadToWebonaryDlg.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Src/xWorks/UploadToWebonaryDlg.cs b/Src/xWorks/UploadToWebonaryDlg.cs index 6e05a7151f..afb2586df4 100644 --- a/Src/xWorks/UploadToWebonaryDlg.cs +++ b/Src/xWorks/UploadToWebonaryDlg.cs @@ -93,9 +93,8 @@ public UploadToWebonaryDlg(UploadToWebonaryController controller, UploadToWebona private void siteNameBox_TextChanged(object sender, EventArgs e) { - var subDomain = m_controller.UseJsonApi ? "cloud-api" : "www"; // ReSharper disable once LocalizableElement -- this is the *world-wide* web, not a LAN. - webonarySiteURLLabel.Text = $"https://{subDomain}.{UploadToWebonaryController.Server}/{webonarySiteNameTextbox.Text}"; + webonarySiteURLLabel.Text = $"https://www.{UploadToWebonaryController.Server}/{webonarySiteNameTextbox.Text}"; } private void UpdateEntriesToBePublishedLabel()