diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2025-02-13 13:21:58 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2025-02-14 10:12:45 +0000 |
commit | 9424885c8e8d78230aa8de1c9083b3493a615222 (patch) | |
tree | e1f559727530be705d8f995cea8d48bcc8a03076 /src/gui | |
parent | 6bab66f3651b44d33830f75c8836f0872d2b0676 (diff) | |
download | mana-9424885c8e8d78230aa8de1c9083b3493a615222.tar.gz mana-9424885c8e8d78230aa8de1c9083b3493a615222.tar.bz2 mana-9424885c8e8d78230aa8de1c9083b3493a615222.tar.xz mana-9424885c8e8d78230aa8de1c9083b3493a615222.zip |
Fixed handling of update URLs which mention a port
This appears to have been a regression in
f405849b49614254f42eb3ee6147434458978623, which for some reason erased
the port (and any trailing parts) from not just the update directory but
also from the update URL.
Unfortunately we can't access Mana-Mantis #381 at the moment, but
presumably the port was removed due to the colon being a problematic
character. Instead, now the colon (and other special characters) are
replaced by _ when determining the update directory.
Closes https://git.themanaworld.org/mana/mana/-/issues/80
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/updaterwindow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/updaterwindow.h b/src/gui/updaterwindow.h index 539783c5..65ee1d88 100644 --- a/src/gui/updaterwindow.h +++ b/src/gui/updaterwindow.h @@ -64,7 +64,7 @@ class UpdaterWindow : public Window, public gcn::ActionListener, * @param updateHost Host where to get the updated files. * @param updatesDir Directory where to store updates (should be absolute * and already created). - * @param applyUpdates If true, the update window will pass the updates to teh + * @param applyUpdates If true, the update window will pass the updates to the * resource manager */ UpdaterWindow(const std::string &updateHost, |