Skip to content

Commit

Permalink
update style
Browse files Browse the repository at this point in the history
  • Loading branch information
grokify committed Aug 24, 2016
1 parent fe90e83 commit e078e52
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/ringcentral_sdk/rest/subscription.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
require 'pubnub'
require 'timers'

require 'pp'

module RingCentralSdk::REST
class Subscription
include Observable
Expand Down Expand Up @@ -225,7 +227,7 @@ def _decrypt(message)
ciphertext = Base64.decode64(message)
plaintext = cipher.update(ciphertext) + cipher.final

message = MultiJson.decode(plaintext, :symbolize_keys=>false)
message = MultiJson.decode(plaintext, symbolize_keys: false)
end

return message
Expand Down

0 comments on commit e078e52

Please sign in to comment.