Repos / pytaku / dc3c46ba9d
commit dc3c46ba9db8b2e05cbfec0da44464a1f70c51e3
Author: Bùi Thành Nhân <hi@imnhan.com>
Date:   Thu Aug 6 00:23:35 2020 +0700

    fix chapter list link

diff --git a/pyproject.toml b/pyproject.toml
index 8df5c14..fa366d1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [tool.poetry]
 name = "pytaku"
-version = "0.1.5"
+version = "0.1.6"
 description = ""
 authors = ["Bùi Thành Nhân <hi@imnhan.com>"]
 license = "AGPL-3.0-only"
diff --git a/src/pytaku/templates/chapter.html b/src/pytaku/templates/chapter.html
index d506c62..b36ffd0 100644
--- a/src/pytaku/templates/chapter.html
+++ b/src/pytaku/templates/chapter.html
@@ -66,7 +66,7 @@ <h1>{{ self.title() }}</h1>
   {{ ibutton(left_icon='chevrons-left', text='Prev', disabled=True) }}
   {% endif %}
 
-  {{ ibutton(href=url_for('title_view', title_id=title_id, site=title_site), left_icon='list', text='Chapter list', color='blue') }}
+  {{ ibutton(href=url_for('title_view', title_id=title_id, site=site), left_icon='list', text='Chapter list', color='blue') }}
 
   {% if next_chapter %}
   {{ ibutton(href=url_for('chapter_view', site=site, chapter_id=next_chapter['id']), right_icon='chevrons-right', text='Next') }}