Skip to content

Commit

Permalink
Merge pull request #3 from kamilkosek/dev
Browse files Browse the repository at this point in the history
Merge 0.1.4 into main
  • Loading branch information
kamilkosek authored Nov 22, 2024
2 parents 7a4ef7f + 31556fd commit 1c4030a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.3
current_version = 0.1.4
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion app/jellyfin_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def add_playlist():
db.session.execute(stmt)
db.session.commit()

update_playlist_metadata(playlist,playlist_data)
functions.update_playlist_metadata(playlist,playlist_data)

if playlist not in user.playlists:
user.playlists.append(playlist)
Expand Down
2 changes: 1 addition & 1 deletion app/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3"
__version__ = "0.1.4"
2 changes: 1 addition & 1 deletion jellyfin/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def search_music_tracks(self, session_token: str, search_query: str):
"""
search_url = f'{self.base_url}/Items'
params = {
'SearchTerm': search_query,
'SearchTerm': search_query.replace('\'',"´").replace('’','´'),

'IncludeItemTypes': 'Audio', # Search only for audio items
'Recursive': 'true', # Search within all folders
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.3"
__version__ = "0.1.4"

0 comments on commit 1c4030a

Please sign in to comment.