Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorValery Sizov <vsv2711@gmail.com>2012-01-04 03:21:30 +0400
committerValery Sizov <vsv2711@gmail.com>2012-01-04 03:21:30 +0400
commitac62036320eb786b1abdb2ad4ceb66dee1cdd309 (patch)
tree15053a33d6c66bd5bc9d03df4628d08bb828c9d4 /lib
parent8d7aaf0e5501c472504467b9252dd5bde14a98c8 (diff)
fixed bug #316
Diffstat (limited to 'lib')
-rw-r--r--lib/graph_commit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/graph_commit.rb b/lib/graph_commit.rb
index 54550d99cf6..ef5e91c6870 100644
--- a/lib/graph_commit.rb
+++ b/lib/graph_commit.rb
@@ -102,7 +102,7 @@ class GraphCommit
h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil?
h[:id] = sha
h[:date] = date
- h[:message] = message
+ h[:message] = message.force_encoding("UTF-8")
h[:login] = author.email
h
end