Fixes minor bug with html output of author's name.
authorChris Jaekl <cejaekl@yahoo.com>
Tue, 16 May 2017 09:37:39 +0000 (18:37 +0900)
committerChris Jaekl <cejaekl@yahoo.com>
Tue, 16 May 2017 09:37:39 +0000 (18:37 +0900)
book.rb

diff --git a/book.rb b/book.rb
index d7a2a26e24d27d6d99cc3df50acb1d75818b6397..bfd3b250dcc358d958af23ff706f4e9065c049e8 100644 (file)
--- a/book.rb
+++ b/book.rb
@@ -57,7 +57,7 @@ class Book
       result.push('<i>(Unknown title)</i>')
     end
     if nil != @author
-      result.push('<i>by ' + @author.to_s() + '</i>')
+      result.push('<i>by ' + @author.reading_order + '</i>')
     end
     
     seriesInfo = []