mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-26 04:56:16 +10:00
Fix error with reopened merge request not properly reloading
If you reopen a Merge Request and then try to update the source branch it won't properly reload the code since the "reload_code" method still checks if the MR is "opened" and not just "open" (which includes reopened)
This commit is contained in:
@@ -133,7 +133,7 @@ class MergeRequest < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def reload_code
|
||||
if merge_request_diff && opened?
|
||||
if merge_request_diff && open?
|
||||
merge_request_diff.reload_content
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user