We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2ebf83 commit 6748781Copy full SHA for 6748781
ruby-client/pyapns/lib/pyapns.rb
@@ -5,8 +5,8 @@
5
require 'xmlrpc/client'
6
7
XMLRPC::Config.module_eval {
8
- remove_const(:ENABLE_NIL_PARSER) # so that we're not warned about reassigning to a constant
9
- ENABLE_NIL_PARSER = true # so that we don't get "RuntimeError: wrong/unknown XML-RPC type 'nil'"
+ remove_const(:ENABLE_NIL_PARSER) # so that we're not warned about reassigning to a constant
+ const_set(:ENABLE_NIL_PARSER, true) # so that we don't get "RuntimeError: wrong/unknown XML-RPC type 'nil'"
10
}
11
12
module PYAPNS
0 commit comments