Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1c4030a4c6 | ||
|
|
31556fd207 | ||
|
|
42c92caef7 | ||
|
|
7f075fb490 | ||
|
|
53e4cf0a8d |
@@ -1,5 +1,5 @@
|
|||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 0.1.3
|
current_version = 0.1.4
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
|
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ def add_playlist():
|
|||||||
db.session.execute(stmt)
|
db.session.execute(stmt)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|
||||||
update_playlist_metadata(playlist,playlist_data)
|
functions.update_playlist_metadata(playlist,playlist_data)
|
||||||
|
|
||||||
if playlist not in user.playlists:
|
if playlist not in user.playlists:
|
||||||
user.playlists.append(playlist)
|
user.playlists.append(playlist)
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.1.3"
|
__version__ = "0.1.4"
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ class JellyfinClient:
|
|||||||
"""
|
"""
|
||||||
search_url = f'{self.base_url}/Items'
|
search_url = f'{self.base_url}/Items'
|
||||||
params = {
|
params = {
|
||||||
'SearchTerm': search_query,
|
'SearchTerm': search_query.replace('\'',"´").replace('’','´'),
|
||||||
|
|
||||||
'IncludeItemTypes': 'Audio', # Search only for audio items
|
'IncludeItemTypes': 'Audio', # Search only for audio items
|
||||||
'Recursive': 'true', # Search within all folders
|
'Recursive': 'true', # Search within all folders
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
__version__ = "0.1.3"
|
__version__ = "0.1.4"
|
||||||
|
|||||||
Reference in New Issue
Block a user