Skip to content

Commit

Permalink
Merge pull request #1094 from kmuto/utc-modified
Browse files Browse the repository at this point in the history
OPFのmodifiedの時刻情報がlocaltimeで入っていたのをUTCに修正
  • Loading branch information
kmuto authored Aug 8, 2018
2 parents d00b9cb + 21014cf commit 0734b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/epubmaker/producer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def complement
defaults = ReVIEW::Configure.new.merge(
'language' => 'ja',
'date' => Time.now.strftime('%Y-%m-%d'),
'modified' => Time.now.strftime('%Y-%02m-%02dT%02H:%02M:%02SZ'),
'modified' => Time.now.utc.strftime('%Y-%02m-%02dT%02H:%02M:%02SZ'),
'isbn' => nil,
'toclevel' => 2,
'stylesheet' => [],
Expand Down

0 comments on commit 0734b1e

Please sign in to comment.