# HG changeset patch # User Kim Alvefur # Date 1327686745 -3600 # Node ID 3d8442f7f0344487baf3328d208a9d124a143b09 # Parent c077b20ad59f850a4cc425b13ccce05541b9fc53 plugins.roster: Make stanza error parts locals. diff -r c077b20ad59f -r 3d8442f7f034 plugins/roster.lua --- a/plugins/roster.lua Mon Jan 16 22:58:50 2012 +0100 +++ b/plugins/roster.lua Fri Jan 27 18:52:25 2012 +0100 @@ -75,7 +75,7 @@ if reply.attr.type == "result" then callback(true); else - type, condition, text = reply:get_error(); + local type, condition, text = reply:get_error(); callback(nil, { type, condition, text }); end end); @@ -94,7 +94,7 @@ if reply.attr.type == "result" then callback(true); else - type, condition, text = reply:get_error(); + local type, condition, text = reply:get_error(); callback(nil, { type, condition, text }); end end); @@ -126,7 +126,7 @@ end callback(roster); else - type, condition, text = stanza:get_error(); + local type, condition, text = stanza:get_error(); callback(nil, { type, condition, text }); --FIXME end end);