Created
November 11, 2018 03:45
-
-
Save matoro/ee947dbd97f5fa68232e2e00fc1f0c46 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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