plugins/autosubscribe.lua

Thu, 09 Jul 2015 14:39:10 +0200

author
Kim Alvefur <zash@zash.se>
date
Thu, 09 Jul 2015 14:39:10 +0200
changeset 124
4530954f545a
parent 19
a698d64fc929
permissions
-rw-r--r--

plugins.xkcd2: Attempt to load list of strips at startup


function riddim.plugins.autosubscribe(bot)
	bot:hook("presence", function (presence)
		if presence.stanza.attr.type ~= 'subscribe' then return nil; end
		bot:send_presence(presence.sender.jid, 'subscribed');
		return false;
	end);
end

mercurial