# HG changeset patch # User Kim Alvefur # Date 1465040226 -7200 # Node ID 3c732f1d990c251758e53824f9991a218c6a3a72 # Parent f065fc1fab0a7cd45c62104e7f5814d4fee5fd09 plugins.presence: If a string is given as presece options, use it as status diff -r f065fc1fab0a -r 3c732f1d990c plugins/presence.lua --- a/plugins/presence.lua Sat Jun 04 13:36:39 2016 +0200 +++ b/plugins/presence.lua Sat Jun 04 13:37:06 2016 +0200 @@ -27,9 +27,9 @@ if opts.status or opts.msg then p:tag("status"):text(opts.status or opts.msg):up(); end + elseif type(opts) == "string" then + p:tag("status"):text(opts):up(); end - -- TODO maybe use opts as prio if it's a int, - -- or as show or status if it's a string? stream:send(p); end