Merge pull request #1194 from bgrozev/disable-suspend-video

config: Disable suspend video by default.
This commit is contained in:
hristoterezov 2016-12-12 13:07:00 -06:00 committed by GitHub
commit 8c3fb54d3d
1 changed files with 3 additions and 1 deletions

View File

@ -76,5 +76,7 @@ var config = { // eslint-disable-line no-unused-vars
// If true - all users without token will be considered guests and all users
// with token will be considered non-guests. Only guests will be allowed to
// edit their profile.
enableUserRolesBasedOnToken: false
enableUserRolesBasedOnToken: false,
// Suspending video might cause problems with audio playback. Disabling until these are fixed.
disableSuspendVideo: true
};