Software /
code /
verse
Changeset
406:3c732f1d990c
plugins.presence: If a string is given as presece options, use it as status
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 04 Jun 2016 13:37:06 +0200 |
parents | 405:f065fc1fab0a |
children | 407:c99db5172309 |
files | plugins/presence.lua |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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