plugins/roster.lua

changeset 276
3d8442f7f034
parent 271
c9d8628a61cc
child 380
0891b4e27766
--- 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);

mercurial