From f8e9d39ccd834f68ac8a99bf7ac03eafb75745c3 Mon Sep 17 00:00:00 2001 From: Steffen Lange Date: Tue, 21 Apr 2026 10:56:10 +0200 Subject: [PATCH] Zoom: switch to x64 version --- modules/Zoom.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/Zoom.php b/modules/Zoom.php index 7fe27a5..46bd3b0 100644 --- a/modules/Zoom.php +++ b/modules/Zoom.php @@ -2,11 +2,11 @@ class Zoom extends PatchBase { function __construct() { - parent::__construct('Zoom Video Communications', 'Zoom', 'https://zoom.us/download/admin'); + parent::__construct('Zoom Video Communications', 'Zoom Workplace', 'https://zoom.us/download/admin'); } function check() : bool { - if ($this->fetch_header('https://zoom.us/client/latest/ZoomInstaller.exe')) - return $this->parse('/\/prod\/([\d\.]+)\/ZoomInstaller\.exe/'); + if ($this->fetch_header('https://zoom.us/client/latest/ZoomInstaller.exe?archType=x64')) + return $this->parse('/\/prod\/([\d\.]+)\/x64\/ZoomInstaller\.exe/'); return false; } }