Fix "500: Encoding error" on blame view
This change forces encoding of source line data into UTF-8 and thus fixes the encoding error at least partially. The issue is described in https://gitlab.com/gitlab-org/gitlab-ce/issues/894
This commit is contained in:
parent
ada6c6080b
commit
09152bad0c
1 changed files with 1 additions and 1 deletions
|
@ -30,5 +30,5 @@
|
||||||
%code
|
%code
|
||||||
:erb
|
:erb
|
||||||
<% lines.each do |line| %>
|
<% lines.each do |line| %>
|
||||||
<%= highlight(@blob.name, line, true).html_safe %>
|
<%= highlight(@blob.name, line.force_encoding("utf-8"), true).html_safe %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
Loading…
Reference in a new issue