Skip to content
Snippets Groups Projects
Commit 6b53add3 authored by James Lopez's avatar James Lopez Committed by Rémy Coutable
Browse files

Fix binary encoding error on MR diffs

parent b9fcc48a
No related branches found
No related tags found
No related merge requests found
---
title: Fix binary encoding error on MR diffs
merge_request: 11929
author:
Loading
Loading
@@ -38,7 +38,7 @@ module Gitlab
 
def encode_utf8(message)
detect = CharlockHolmes::EncodingDetector.detect(message)
if detect
if detect && detect[:encoding]
begin
CharlockHolmes::Converter.convert(message, detect[:encoding], 'UTF-8')
rescue ArgumentError => e
Loading
Loading
Loading
Loading
@@ -139,4 +139,15 @@ describe MergeRequestDiff, models: true do
expect(subject.commits_count).to eq 2
end
end
describe '#utf8_st_diffs' do
it 'does not raise error when a hash value is in binary' do
subject.st_diffs = [
{ diff: "\0" },
{ diff: "\x05\x00\x68\x65\x6c\x6c\x6f" }
]
expect { subject.utf8_st_diffs }.not_to raise_error
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment