From 138780fda7d333a9693e69bf020ed0955824f26d Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Tue, 27 Aug 2024 15:29:34 +0200 Subject: [PATCH] fix undefined variables Signed-off-by: Matthieu Gallien --- config/config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/config.php b/config/config.php index 3dcf524..45eaaba 100644 --- a/config/config.php +++ b/config/config.php @@ -44,6 +44,11 @@ $stable_linux_url = $url . 'Linux/'; $stable_windows_url = $url . 'Windows/'; $stable_mac_url = $url . 'Mac/Installer/'; + + $betaUrl = = 'https://download.nextcloud.com/desktop/prereleases/'; + $stable_linux_url = $url . 'Linux/'; + $stable_windows_url = $url . 'Windows/'; + $stable_mac_url = $url . 'Mac/'; } else { $stableUrl = 'https://github.com/nextcloud-releases/desktop/releases/download/v' . $stableVersion . '/'; $stable_linux_url = $stableUrl;