From 6d62bce92ddae7a9299b033fee6e62bc3782a90d Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 22 Jun 2025 20:12:22 +0600 Subject: [PATCH] api/match-action: don't force local-processing response for pickers cuz that won't work, at least for now --- api/src/processing/match-action.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/processing/match-action.js b/api/src/processing/match-action.js index b4a0dbdc..b5c70409 100644 --- a/api/src/processing/match-action.js +++ b/api/src/processing/match-action.js @@ -250,7 +250,7 @@ export default function({ // TODO: add support for HLS // (very painful) - if (!params.isHLS) { + if (!params.isHLS && responseType !== "picker") { const isPreferredWithExtra = localProcessing === "preferred" && extraProcessingTypes.includes(params.type);