mirror of
https://github.com/stashapp/stash.git
synced 2025-12-25 09:42:34 +01:00
Fix play random not using effective filter (#6202)
This commit is contained in:
parent
96b5a9448c
commit
648875995c
1 changed files with 1 additions and 1 deletions
|
|
@ -518,7 +518,7 @@ export const FilteredSceneList = (props: IFilteredScenes) => {
|
|||
|
||||
const queue = useMemo(() => SceneQueue.fromListFilterModel(filter), [filter]);
|
||||
|
||||
const playRandom = usePlayRandom(filter, totalCount);
|
||||
const playRandom = usePlayRandom(effectiveFilter, totalCount);
|
||||
const playSelected = usePlaySelected(selectedIds);
|
||||
const playFirst = usePlayFirst();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue