Begin restructing, fixed some issues related to movement

This commit is contained in:
TrueTechy 2019-11-01 00:43:20 +00:00 committed by Odd Stråbø
parent 6be8213b34
commit 84b8093171
72 changed files with 16 additions and 34 deletions

View file

@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
#################################################################################################
import logging
from helper import JSONRPC
#################################################################################################
LOG = logging.getLogger("JELLYFIN." + __name__)
#################################################################################################
def get_grouped_set():
''' Get if boxsets should be grouped
'''
result = JSONRPC('Settings.GetSettingValue').execute({'setting': "videolibrary.groupmoviesets"})
return result.get('result', {}).get('value', False)