1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update translations

This commit is contained in:
Luke Pulverenti 2017-01-12 16:11:29 -05:00
parent 3ed10f65e5
commit ba15a638ba
44 changed files with 440 additions and 327 deletions

View file

@ -24,8 +24,11 @@ define(['playbackManager'], function (playbackManager) {
return new Promise(function (resolve, reject) {
require(["registrationServices"], function (registrationServices) {
registrationServices.validateFeature('playback', options).then(resolve, function () {
startAutoStopTimer();
registrationServices.validateFeature('playback', options).then(function (result) {
if (result && result.enableTimeLimit) {
startAutoStopTimer();
}
resolve();
});
});