Skip to content

Instantly share code, notes, and snippets.

@matoro
Created November 11, 2018 03:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matoro/ee947dbd97f5fa68232e2e00fc1f0c46 to your computer and use it in GitHub Desktop.
Save matoro/ee947dbd97f5fa68232e2e00fc1f0c46 to your computer and use it in GitHub Desktop.
diff --git a/trackma/lib/libmal.py b/trackma/lib/libmal.py
index 5d2fb01..c04f977 100644
--- a/trackma/lib/libmal.py
+++ b/trackma/lib/libmal.py
@@ -338,7 +338,7 @@ class libmal(lib):
show_id = item['anime_id']
show.update({
'id': show_id,
- 'title': item['anime_title'],
+ 'title': str(item['anime_title']),
'my_progress': item['num_watched_episodes'],
'my_status': item['status'],
'my_score': item['score'],
@@ -364,7 +364,7 @@ class libmal(lib):
show_id = item['manga_id']
show.update({
'id': show_id,
- 'title': item['manga_title'],
+ 'title': str(item['manga_title']),
'my_progress': item['num_read_chapters'],
'my_volumes': item['num_read_volumes'],
'my_status': item['status'],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment