Changeset

276:3d8442f7f034

plugins.roster: Make stanza error parts locals.
author Kim Alvefur <zash@zash.se>
date Fri, 27 Jan 2012 18:52:25 +0100
parents 275:c077b20ad59f
children 277:0d34cd815a93
files plugins/roster.lua
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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);