From 78d5911e48df0726b00f46b81c7fedbf00620d71 Mon Sep 17 00:00:00 2001 From: Anton Afanasyeu Date: Fri, 7 Aug 2026 22:15:46 +0200 Subject: [PATCH] Hub downloads: prefer nightly OTA channel before staging. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolve APK from nightly → staging → stable for lab latest builds. Co-authored-by: Cursor --- assets/hub-downloads.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/hub-downloads.js b/assets/hub-downloads.js index 979f070..5624b19 100644 --- a/assets/hub-downloads.js +++ b/assets/hub-downloads.js @@ -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');