Spec says we must reply to all IQs

Stephen Paul Weber created

So say feature-not-implemented if we haven't got it with some other handler.

Change summary

sgx_jmp.rb | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

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