Do not use the promise results here, since they are meant for elsewhere

Stephen Paul Weber created

Explicitly return true to avoid passing to next link in the tree.  Make sure
command stanzas fulfill both command and iq manager if needed.

Change summary

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

Detailed changes

sgx_jmp.rb 🔗

@@ -885,10 +885,13 @@ Command.new(
 
 command sessionid: /./ do |iq|
 	COMMAND_MANAGER.fulfill(iq)
+	IQ_MANAGER.fulfill(iq)
+	true
 end
 
 iq type: [:result, :error] do |iq|
 	IQ_MANAGER.fulfill(iq)
+	true
 end
 
 iq type: [:get, :set] do |iq|