Skip to content
Snippets Groups Projects
Commit 71033c9e authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

handle broken diffs gracefully

parent 86ae7278
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -118,7 +118,7 @@ class MergeRequest < ActiveRecord::Base
end
 
def broken_diffs?
diffs == [Gitlab::Git::Diff::BROKEN_DIFF]
diffs == broken_diffs
end
 
def valid_diffs?
Loading
Loading
@@ -214,10 +214,22 @@ class MergeRequest < ActiveRecord::Base
end
 
def dump_diffs(diffs)
diffs.map(&:to_hash)
if broken_diffs?
broken_diffs
else
diffs.map(&:to_hash)
end
end
def load_diffs(raw)
if raw == broken_diffs
broken_diffs
else
raw.map { |hash| Gitlab::Git::Diff.new(hash) }
end
end
 
def load_diffs(array)
array.map { |hash| Gitlab::Git::Diff.new(hash) }
def broken_diffs
[Gitlab::Git::Diff::BROKEN_DIFF]
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