From: Chris Jaekl Date: Tue, 16 May 2017 09:37:39 +0000 (+0900) Subject: Fixes minor bug with html output of author's name. X-Git-Url: http://jaekl.net/gitweb/?p=quanlib.git;a=commitdiff_plain;h=93ad56f506f87af56145059fb8be9b35c5c61567 Fixes minor bug with html output of author's name. --- diff --git a/book.rb b/book.rb index d7a2a26..bfd3b25 100644 --- a/book.rb +++ b/book.rb @@ -57,7 +57,7 @@ class Book result.push('(Unknown title)') end if nil != @author - result.push('by ' + @author.to_s() + '') + result.push('by ' + @author.reading_order + '') end seriesInfo = []