# HG changeset patch # User Kim Alvefur # Date 1314567299 -7200 # Node ID aa3088108021eeeb45be2504cb09d1fd7f728d64 # Parent cd2e5eef7a7a7e1b0eb69060b2d5355a568e03df plugins.roster: Fix wrong name of reply variable diff -r cd2e5eef7a7a -r aa3088108021 plugins/roster.lua --- a/plugins/roster.lua Tue Aug 16 02:32:36 2011 +0200 +++ b/plugins/roster.lua Sun Aug 28 23:34:59 2011 +0200 @@ -81,7 +81,7 @@ :add_child(item_lua2xml(item)), function (reply) if not callback then return end - if result.attr.type == "result" then + if reply.attr.type == "result" then callback(true); else type, condition, text = reply:get_error();