# HG changeset patch # User Kim Alvefur # Date 1522503808 -7200 # Node ID ef66f302fe975a97dd8710a2b6eb2352913de41a # Parent db462d4feb44b4ea43dc2aeeb5779bebcbe063b5 plugins.archive: Don't require 'queryid' attribute in iq response Not needed since moved out of the last diff -r db462d4feb44 -r ef66f302fe97 plugins/archive.lua --- a/plugins/archive.lua Tue Apr 18 16:46:26 2017 +0200 +++ b/plugins/archive.lua Sat Mar 31 15:43:28 2018 +0200 @@ -64,7 +64,7 @@ return true; end local finnished = reply:get_child("fin", xmlns_mam) - if finnished and finnished.attr.queryid == queryid then + if finnished then local rset = rsm.get(finnished); for k,v in pairs(rset or NULL) do results[k]=v; end callback(results);