config: Disable suspend video by default.

This commit is contained in:
Boris Grozev 2016-12-12 10:37:36 -06:00
parent a09b8ce56e
commit 7707e384c5
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
};