diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2017-04-25 17:05:40 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2017-04-25 17:05:40 -0300 |
commit | 44954c507ed99db892e9e4e40779bc6fc6f0a56f (patch) | |
tree | 21edc94dc1e887076cb5737f414887f968d1bb41 /lib/github/response.rb | |
parent | 39ab842bc2ff1395ed1bf6768ff2a409a33bf3d3 (diff) | |
download | gitlab-ce-44954c507ed99db892e9e4e40779bc6fc6f0a56f.tar.gz |
Fix import of notes on Pull Request diff
Diffstat (limited to 'lib/github/response.rb')
-rw-r--r-- | lib/github/response.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/github/response.rb b/lib/github/response.rb index 2fd07dd822e..761c524b553 100644 --- a/lib/github/response.rb +++ b/lib/github/response.rb @@ -9,7 +9,7 @@ module Github end def body - @body ||= Oj.load(raw.body, class_cache: false, mode: :compat) + Oj.load(raw.body, class_cache: false, mode: :compat) end def rels |