Fix issue when developers are able to push to protected branch

When that branch contain a '/' in the branch name.
Fix for git over HTTP
This commit is contained in:
Dmitriy Zaporozhets 2013-08-26 12:54:57 +03:00
parent 551946a34e
commit 48ce80a60c

View file

@ -110,7 +110,7 @@ module Grack
# Need to reset seek point
@request.body.rewind
/refs\/heads\/([\w\.-]+)/n.match(input.force_encoding('ascii-8bit')).to_a.last
/refs\/heads\/([\/\w\.-]+)/n.match(input.force_encoding('ascii-8bit')).to_a.last
end
end
end