diff options
Diffstat (limited to 'app/models/network/commit.rb')
-rw-r--r-- | app/models/network/commit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/network/commit.rb b/app/models/network/commit.rb index 8417f200e36..9357e55b419 100644 --- a/app/models/network/commit.rb +++ b/app/models/network/commit.rb @@ -12,7 +12,7 @@ module Network end def method_missing(m, *args, &block) - @commit.send(m, *args, &block) + @commit.__send__(m, *args, &block) # rubocop:disable GitlabSecurity/PublicSend end def space |