sgx_jmp.rb 🔗
@@ -407,3 +407,6 @@ iq type: [:result, :error] do |iq|
IQ_MANAGER.fulfill(iq)
end
+iq type: [:get, :set] do |iq|
+ self << Blather::StanzaError.new(iq, "feature-not-implemented", :cancel)
+end
Stephen Paul Weber created
So say feature-not-implemented if we haven't got it with some other handler.
sgx_jmp.rb | 3 +++
1 file changed, 3 insertions(+)
@@ -407,3 +407,6 @@ iq type: [:result, :error] do |iq|
IQ_MANAGER.fulfill(iq)
end
+iq type: [:get, :set] do |iq|
+ self << Blather::StanzaError.new(iq, "feature-not-implemented", :cancel)
+end