From 99833212b5e671fa835010b42530ca0d69677672 Mon Sep 17 00:00:00 2001 From: Ani Date: Wed, 10 Apr 2024 19:59:28 +0100 Subject: [PATCH] Update: Workaround emulator freeze on boot on 4 broken builds --- update.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/update.php b/update.php index a851922..f7d3a40 100644 --- a/update.php +++ b/update.php @@ -142,6 +142,12 @@ function checkForUpdates(string $api, string $commit = '') : array continue; } + // Workaround for builds that freeze on boot if changelog data is sent + if (in_array($current->pr, array("15390", "15392", "15394", "15395"))) + { + continue; + } + $results['changelog'][] = array("version" => $row->version, "title" => $row->title); }