a/src/mediaserver/cdplugins/tidal/tidalapi/models.py b/src/mediaserver/cdplugins/tidal/tidalapi/models.py
...
...
18
18
19
from __future__ import unicode_literals
19
from __future__ import unicode_literals
20
20
21
IMG_URL = "http://images.osl.wimpmusic.com/im/im?w={width}&h={height}&{id_type}={id}"
21
IMG_URL = "http://images.osl.wimpmusic.com/im/im?w={width}&h={height}&{id_type}={id}"
22
22
23
24
class Quality(object):
25
    lossless = 'LOSSLESS'
26
    high = 'HIGH'
27
    low = 'LOW'
28
    trial = 'TRIAL' # 30 Seconds MP3 Stream
29
30
31
class SubscriptionType(object):
32
    premium = 'PREMIUM'
33
    hifi = 'HIFI'
34
    free = 'FREE'
23
35
24
class Model(object):
36
class Model(object):
25
    id = None
37
    id = None
26
    name = None
38
    name = None
27
39