0
0
Fork 0

Feature - Prevents multiple audio/video attachments from being played at the same time (#24717)

This commit is contained in:
João Pedro Marques 2023-11-07 20:37:58 -03:00 committed by GitHub
parent 389a6cc4c0
commit d3cd37d73e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 140 additions and 11 deletions

View file

@ -2,6 +2,13 @@ import { Map as ImmutableMap } from 'immutable';
import { STORE_HYDRATE } from '../actions/store';
export let currentMedia = null;
export function setCurrentMedia(value) {
currentMedia = value;
}
const initialState = ImmutableMap({
accept_content_types: [],
});