···765765 local prev_current = current
766766 local bytes_read, val = dissect_db_field(buf, current, msg_tree, m_type, i)
767767768768+ -- If it's a Search request, record the search query for the summary
769769+ if m_type == 0x1300 and i == 4 and val then
770770+ -- val is a string from dissect_db_field
771771+ msg_tree:append_text(" - \"" .. val .. "\"")
772772+ db_types[#db_types] = db_types[#db_types] .. " \"" .. val .. "\""
773773+ end
774774+768775 -- If it's a Success/Ack, show what it's acking in the summary
769776 if m_type == 0x4000 then
770777 if i == 1 and val then