From 9d590a64dc3fdaec836529a0312fe065809b70d4 Mon Sep 17 00:00:00 2001 From: wukko Date: Sun, 20 Aug 2023 22:30:26 +0600 Subject: [PATCH] fix the order --- src/modules/processing/matchActionDecider.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/processing/matchActionDecider.js b/src/modules/processing/matchActionDecider.js index 3d96db6..c2db917 100644 --- a/src/modules/processing/matchActionDecider.js +++ b/src/modules/processing/matchActionDecider.js @@ -13,11 +13,11 @@ export default function(r, host, audioFormat, isAudioOnly, lang, isAudioMuted) { }, params = {} - if (r.picker) action = "picker" - else if (r.isPhoto) action = "photo"; - else if (r.isM3U8) action = "singleM3U8"; - else if (isAudioOnly) action = "audio"; + if (r.isPhoto) action = "photo"; + else if (r.picker) action = "picker" else if (isAudioMuted) action = "muteVideo"; + else if (isAudioOnly) action = "audio"; + else if (r.isM3U8) action = "singleM3U8"; else action = "video"; if (action === "picker" || action === "audio") {