Module:Tour stats: Difference between revisions

no edit summary
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 407: Line 407:
result['multi_song'] = '1'
result['multi_song'] = '1'
end
end
local row_node = pcall(get_row, result)
local success, row_node = pcall(get_row, result)
if row_node == false then
if success == false then
error('Too many results! Try narrowing your search criteria.')
error('Too many results! Try narrowing your search criteria')
else
else
list:node(row_node)
list:node(row_node)