From e89b229da6e660b747e8816196d7eed9cca403f8 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 13 Jan 2017 17:00:58 +0100 Subject: [PATCH] Fixed check for cached downloads --- .../lib/system/package/PackageInstallationScheduler.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wcfsetup/install/files/lib/system/package/PackageInstallationScheduler.class.php b/wcfsetup/install/files/lib/system/package/PackageInstallationScheduler.class.php index 7e0e6e546e..0bd582df7c 100644 --- a/wcfsetup/install/files/lib/system/package/PackageInstallationScheduler.class.php +++ b/wcfsetup/install/files/lib/system/package/PackageInstallationScheduler.class.php @@ -212,7 +212,7 @@ class PackageInstallationScheduler { */ protected function downloadPackage($package, $packageUpdateVersions, $validateInstallInstructions = false) { // get download from cache - if ($filename = $this->getCachedDownload($package, $packageUpdateVersions[0]['package'])) { + if ($filename = $this->getCachedDownload($package, $packageUpdateVersions[0]['packageVersion'])) { return $filename; } -- 2.20.1