mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
21 lines
733 B
Python
21 lines
733 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import division, absolute_import, print_function, unicode_literals
|
|
|
|
#################################################################################################
|
|
|
|
from ..helper import JSONRPC
|
|
from ..helper import LazyLogger
|
|
|
|
#################################################################################################
|
|
|
|
LOG = LazyLogger(__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)
|