From cdda65f42e970333006acdccf9c734e0b4af5c96 Mon Sep 17 00:00:00 2001 From: Vigilio Desto Date: Wed, 8 Apr 2026 13:08:53 +0200 Subject: [PATCH] add team-buio to provider rotation chain --- recommend.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recommend.js b/recommend.js index d582465..90b2d40 100644 --- a/recommend.js +++ b/recommend.js @@ -32,7 +32,7 @@ const SWITCH_THRESHOLD = threshIdx !== -1 ? parseFloat(args[threshIdx + 1]) : 0. // Parse --chain const chainIdx = args.indexOf('--chain'); -const DEFAULT_CHAIN = ['team-vigilio', 'team-ludo', 'team-molto', 'team-nadja']; +const DEFAULT_CHAIN = ['team-vigilio', 'team-ludo', 'team-buio', 'team-molto', 'team-nadja']; const PROVIDER_CHAIN = chainIdx !== -1 ? args[chainIdx + 1].split(',').map(s => s.trim()) : DEFAULT_CHAIN;