Commit ac62036320eb786b1abdb2ad4ceb66dee1cdd309
1 parent
8d7aaf0e
Exists in
master
and in
4 other branches
fixed bug #316
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
lib/graph_commit.rb
@@ -102,7 +102,7 @@ class GraphCommit | @@ -102,7 +102,7 @@ class GraphCommit | ||
102 | h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil? | 102 | h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil? |
103 | h[:id] = sha | 103 | h[:id] = sha |
104 | h[:date] = date | 104 | h[:date] = date |
105 | - h[:message] = message | 105 | + h[:message] = message.force_encoding("UTF-8") |
106 | h[:login] = author.email | 106 | h[:login] = author.email |
107 | h | 107 | h |
108 | end | 108 | end |