mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Merge pull request #127 from mcarlton00/deletions
Remove unused imports and function
This commit is contained in:
commit
0118c57226
4 changed files with 7 additions and 27 deletions
|
@ -19,9 +19,8 @@ import library
|
|||
import setup
|
||||
import monitor
|
||||
from views import Views, verify_kodi_defaults
|
||||
from helper import _, window, settings, event, dialog, compare_version
|
||||
from helper import _, window, settings, event, dialog
|
||||
from jellyfin import Jellyfin
|
||||
from database import Database, jellyfin_db, reset
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
|
@ -6,5 +6,6 @@ from obj import Objects
|
|||
from actions import Actions
|
||||
from actions import PlaylistWorker
|
||||
from actions import on_play, on_update, special_listener
|
||||
import utils
|
||||
|
||||
Objects().mapping()
|
||||
|
|
|
@ -17,7 +17,6 @@ from downloader import TheVoid
|
|||
from obj import Objects
|
||||
from helper import _, playutils, api, window, settings, dialog
|
||||
from dialogs import resume
|
||||
from utils import get_play_action
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
@ -94,17 +93,13 @@ class Actions(object):
|
|||
if item['MediaType'] in ('Video', 'Audio'):
|
||||
resume = item['UserData'].get('PlaybackPositionTicks')
|
||||
|
||||
if resume:
|
||||
if get_play_action() == "Resume":
|
||||
seektime = True
|
||||
if resume and transcode and not seektime:
|
||||
choice = self.resume_dialog(api.API(item, self.server).adjust_resume((resume or 0) / 10000000.0))
|
||||
|
||||
if transcode and not seektime:
|
||||
choice = self.resume_dialog(api.API(item, self.server).adjust_resume((resume or 0) / 10000000.0))
|
||||
if choice is None:
|
||||
raise Exception("User backed out of resume dialog.")
|
||||
|
||||
if choice is None:
|
||||
raise Exception("User backed out of resume dialog.")
|
||||
|
||||
seektime = False if not choice else True
|
||||
seektime = False if not choice else True
|
||||
|
||||
if settings('enableCinema.bool') and not seektime:
|
||||
self._set_intros(item)
|
||||
|
|
|
@ -13,21 +13,6 @@ LOG = logging.getLogger("JELLYFIN." + __name__)
|
|||
#################################################################################################
|
||||
|
||||
|
||||
def get_play_action():
|
||||
|
||||
''' I could not figure out a way to listen to kodi setting changes?
|
||||
For now, verify the play action every time play is called.
|
||||
'''
|
||||
options = ['Choose', 'Play', 'Resume', 'Show information']
|
||||
result = JSONRPC('Settings.GetSettingValue').execute({'setting': "myvideos.selectaction"})
|
||||
try:
|
||||
return options[result['result']['value']]
|
||||
except Exception as error:
|
||||
LOG.exception("Returning play action due to error: %s", error)
|
||||
|
||||
return options[1]
|
||||
|
||||
|
||||
def get_grouped_set():
|
||||
|
||||
''' Get if boxsets should be grouped
|
||||
|
|
Loading…
Reference in a new issue