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 9983321
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions update.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 9983321

Please sign in to comment.