Skip to content

Commit

Permalink
Update PresetUpdater.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
whitekaren committed Jun 21, 2023
1 parent fbacefb commit 6f42a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/slic3r/Utils/PresetUpdater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
}

Expand Down

0 comments on commit 6f42a48

Please sign in to comment.