Update PresetUpdater.cpp

This commit is contained in:
sunsets
2023-06-21 10:12:45 +08:00
parent fbacefb2c3
commit 6f42a4835e

View File

@@ -1423,7 +1423,7 @@ void PresetUpdater::on_update_notification_confirm()
std::vector<GUI::MsgUpdateConfig::Update> updates_msg;
for (const auto& update : p->waiting_updates.updates) {
std::string changelog_url = update.version.config_version.prerelease() == nullptr ? update.changelog_url : std::string();
std::string changelog_url = std::string();//update.version.config_version.prerelease() == nullptr ? update.changelog_url : std::string();
updates_msg.emplace_back(update.vendor, update.version.config_version, update.version.comment, std::move(changelog_url));
}