fix(27): correct MediaTrackGroup ID from 8 to 6

MediaTrackGroup is 6 (not 8) per globals.js ChannelGroupIds.
8 is StreamOutChatGroup, which is why no backing tracks were found.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Nuwan 2026-03-01 20:15:26 +05:30
parent 2ea18d59ea
commit c0c6e33863
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
import { createSlice, createAsyncThunk } from '@reduxjs/toolkit'; import { createSlice, createAsyncThunk } from '@reduxjs/toolkit';
import { enqueueMixdown } from '../../helpers/rest'; import { enqueueMixdown } from '../../helpers/rest';
// Channel group IDs for track filtering // Channel group IDs for track filtering (from globals.js ChannelGroupIds)
const MEDIA_TRACK_GROUP = 8; // ChannelGroupIds.MediaTrackGroup const MEDIA_TRACK_GROUP = 6; // ChannelGroupIds.MediaTrackGroup
// Async thunks for media actions // Async thunks for media actions
export const openBackingTrack = createAsyncThunk( export const openBackingTrack = createAsyncThunk(