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 | 102 | h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil? |
103 | 103 | h[:id] = sha |
104 | 104 | h[:date] = date |
105 | - h[:message] = message | |
105 | + h[:message] = message.force_encoding("UTF-8") | |
106 | 106 | h[:login] = author.email |
107 | 107 | h |
108 | 108 | end | ... | ... |