forked from platypush/platypush
FIX: Apply expanduser to the credentials_file setting in music.tidal
This commit is contained in:
parent
a9ebb4805a
commit
7c610adc84
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class MusicTidalPlugin(RunnablePlugin):
|
||||||
from tidalapi import Quality
|
from tidalapi import Quality
|
||||||
|
|
||||||
super().__init__(**kwargs)
|
super().__init__(**kwargs)
|
||||||
self._credentials_file = credentials_file
|
self._credentials_file = os.path.expanduser(credentials_file)
|
||||||
self._user_playlists = {}
|
self._user_playlists = {}
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue