diff options
author | Douwe Maan <douwe@selenight.nl> | 2016-07-15 17:32:49 -0500 |
---|---|---|
committer | Douwe Maan <douwe@selenight.nl> | 2016-07-15 17:32:49 -0500 |
commit | c5555c8a84f10dd4a3f3f213bcf8b088e2a79718 (patch) | |
tree | 5014051cba38fa6e5f5b6926136a8b587f2995a5 /app/models/legacy_diff_note.rb | |
parent | fbd75c35fd3fd43f6680b925959ac9498e9528a5 (diff) | |
download | gitlab-ce-c5555c8a84f10dd4a3f3f213bcf8b088e2a79718.tar.gz |
Don't fail when a LegacyDiffNote didn't store the right diff
Diffstat (limited to 'app/models/legacy_diff_note.rb')
-rw-r--r-- | app/models/legacy_diff_note.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/legacy_diff_note.rb b/app/models/legacy_diff_note.rb index 790dfd4d480..04a651d50ab 100644 --- a/app/models/legacy_diff_note.rb +++ b/app/models/legacy_diff_note.rb @@ -38,7 +38,7 @@ class LegacyDiffNote < Note end def diff_line - @diff_line ||= diff_file.line_for_line_code(self.line_code) + @diff_line ||= diff_file.line_for_line_code(self.line_code) if diff_file end def for_line?(line) @@ -55,7 +55,7 @@ class LegacyDiffNote < Note def active? return @active if defined?(@active) return true if for_commit? - return true unless self.diff + return true unless diff_line return false unless noteable noteable_diff = find_noteable_diff |