From 4e055e8a631ead1e8556287866e7a55f4a97062d Mon Sep 17 00:00:00 2001
From: tsl0922 <tsl0922@gmail.com>
Date: Sat, 20 Apr 2013 09:18:37 +0800
Subject: [PATCH] fix: UTF-8 encoding error

---
 lib/gitlab/backend/grack_auth.rb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/gitlab/backend/grack_auth.rb b/lib/gitlab/backend/grack_auth.rb
index 8b43b606890..6d87df17e75 100644
--- a/lib/gitlab/backend/grack_auth.rb
+++ b/lib/gitlab/backend/grack_auth.rb
@@ -109,6 +109,8 @@ module Grack
       else
         input = @request.body.read
       end
+      # force utf-8 encoding
+      input.encode!('UTF-8', 'UTF-8', invalid: :replace, undef: :replace, replace: '')
       # Need to reset seek point
       @request.body.rewind
       /refs\/heads\/([\w\.-]+)/.match(input).to_a.last
-- 
GitLab