1
0
mirror of git://f0xx.org/ac/ac-be-hub synced 2026-08-09 20:59:23 +03:00

Hub downloads: prefer nightly OTA channel before staging.

Resolve APK from nightly → staging → stable for lab latest builds.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-08-07 22:15:46 +02:00
parent 9cfe5ff5bd
commit 78d5911e48

View File

@@ -1,8 +1,8 @@
(function () {
'use strict';
/** Orchestration default channel; stable is fallback for promoted releases. */
var OTA_CHANNELS = ['staging', 'stable'];
/** Orchestration channels; nightly first for lab latest builds. */
var OTA_CHANNELS = ['nightly', 'staging', 'stable'];
function setStatus(msg) {
var el = document.getElementById('hub-download-apk-status');