@@ -327,7 +327,7 @@ class playerStore {
327327 foundTrakt : true
328328 } ) ;
329329
330- var shouldScrobble = traktUtil . loggedIn ? ls . isSet ( 'traktScrobble' ) ? ls ( 'traktScrobble' ) : false ;
330+ var shouldScrobble = traktUtil . loggedIn ? ls . isSet ( 'traktScrobble' ) ? ls ( 'traktScrobble' ) : true : false ;
331331 if ( shouldScrobble ) {
332332 if ( ! ls . isSet ( 'playerNotifs' ) || ls ( 'playerNotifs' ) )
333333 player . notifier . info ( 'Scrobbling' , '' , 6000 ) ;
@@ -702,7 +702,7 @@ class playerStore {
702702 var itemDesc = this . itemDesc ( ) ;
703703 if ( itemDesc . setting && itemDesc . setting . trakt && ! this . foundTrakt ) {
704704 newObj . foundTrakt = true ;
705- var shouldScrobble = traktUtil . loggedIn ? ls . isSet ( 'traktScrobble' ) ? ls ( 'traktScrobble' ) : false ;
705+ var shouldScrobble = traktUtil . loggedIn ? ls . isSet ( 'traktScrobble' ) ? ls ( 'traktScrobble' ) : true : false ;
706706 if ( shouldScrobble ) {
707707 traktUtil . handleScrobble ( 'start' , itemDesc , this . wcjs . position ) ;
708708 if ( ! ls . isSet ( 'playerNotifs' ) || ls ( 'playerNotifs' ) )
@@ -751,7 +751,7 @@ class playerStore {
751751 if ( ! ls . isSet ( 'playerNotifs' ) || ls ( 'playerNotifs' ) )
752752 player . notifier . info ( 'Found Subtitles' , '' , 6000 ) ;
753753
754- if ( ! ls . isSet ( 'autoSub' ) || ls ( 'autoSub' ) )
754+ if ( ! ls . isSet ( 'autoSub' ) || ls ( 'autoSub' ) ) {
755755 if ( ls ( 'lastLanguage' ) && ls ( 'lastLanguage' ) != 'none' ) {
756756 if ( subs [ ls ( 'lastLanguage' ) ] ) {
757757 playerActions . loadSub ( subs [ ls ( 'lastLanguage' ) ] ) ;
0 commit comments