fix graph problem if authorname or message isnot utf8 encoding
This commit is contained in:
parent
efd9a717c1
commit
c71a76e71a
2 changed files with 19 additions and 4 deletions
|
@ -96,13 +96,13 @@ class GraphCommit
|
|||
h[:parents] = self.parents.collect do |p|
|
||||
[p.id,0,0]
|
||||
end
|
||||
h[:author] = author.name.force_encoding("UTF-8")
|
||||
h[:author] = author.name
|
||||
h[:time] = time
|
||||
h[:space] = space
|
||||
h[:refs] = refs.collect{|r|r.name}.join(" ") unless refs.nil?
|
||||
h[:id] = sha
|
||||
h[:date] = date
|
||||
h[:message] = message.force_encoding("UTF-8")
|
||||
h[:message] = message
|
||||
h[:login] = author.email
|
||||
h
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue