Qt: Fix updater

This commit is contained in:
Connor McLaughlin
2022-07-22 21:51:00 +10:00
parent 0590a6098d
commit 853e9a8a6a
4 changed files with 9 additions and 11 deletions

View File

@@ -92,7 +92,7 @@ std::string AutoUpdaterDialog::getDefaultTag()
std::string AutoUpdaterDialog::getCurrentUpdateTag() const
{
#ifdef AUTO_UPDATER_SUPPORTED
return m_host_interface->GetStringSettingValue("AutoUpdater", "UpdateTag", THIS_RELEASE_TAG);
return Host::GetBaseStringSettingValue("AutoUpdater", "UpdateTag", THIS_RELEASE_TAG);
#else
return {};
#endif