Skip to content

Commit

Permalink
Update: Workaround emulator freeze on boot on 4 broken builds
Browse files Browse the repository at this point in the history
  • Loading branch information
AniLeo committed Apr 10, 2024
1 parent 5a2c425 commit bcde0e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion update.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ function checkForUpdates(string $api, string $commit = '') : array
{
// v2 code
// When current and old build are master builds
if ($api === "v2")
// in_array: Workaround for builds that freeze on boot if changelog data is sent
if ($api === "v2" && !in_array($current->pr, array("15390", "15392", "15394", "15395")))
{
$q_between = mysqli_query($db, "SELECT `version`, `title` FROM `builds`
WHERE `merge_datetime`
Expand Down

0 comments on commit bcde0e1

Please sign in to comment.