mirror of
https://git.launchpad.net/~ubuntu-qt-code/+git/calamares-settings-ubuntu
synced 2025-04-24 01:21:14 +00:00
[pkgselectprocess] Ensure hasInternet is available as a local variable, so we can use it.
This commit is contained in:
parent
f26f191a17
commit
6cb7d4dc52
@ -281,7 +281,8 @@ Calamares::JobResult PackageSelectProcess::exec()
|
||||
|
||||
const QVariantMap installationData = gs->value("installation_data").toMap();
|
||||
const QString installationMode = installationData.value("installation_mode").toString();
|
||||
const bool downloadUpdates = installationData.value("download_updates").toBool();
|
||||
const bool hasInternet = installationData.value("hasInternet").toBool();
|
||||
const bool downloadUpdates = (installationData.value("download_updates").toBool() && hasInternet);
|
||||
const QVariantList packagesToInstall = installationData.value("packages_to_install").toList();
|
||||
const QVariantList packagesToRemove = installationData.value("packages_to_remove").toList();
|
||||
const QVariantList presentSnaps = installationData.value("present_snaps").toList();
|
||||
|
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -12,6 +12,8 @@ calamares-settings-ubuntu (1:25.04.26) UNRELEASED; urgency=medium
|
||||
containing "*". For this cycle we can trust our distributors won't do
|
||||
anything unusual, but next cycle, we need to perform explicit validation
|
||||
on these items. If you are a downstream, please be careful.
|
||||
* [pkgselectprocess] Ensure hasInternet is available as a local variable, so
|
||||
we can use it.
|
||||
|
||||
-- Simon Quigley <tsimonq2@ubuntu.com> Tue, 15 Apr 2025 22:15:17 -0500
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user