# HG changeset patch # User Kim Alvefur # Date 1615147338 -3600 # Node ID 48afaec5d1de0b54e06b8e8c38841a1f77f10f4c # Parent 42f43f1383dbc1766b662a78e5fc37635e6a0d4c mod_rest: Allow empty @to to mean to=account is in normal XMPP Noticed an XXX in snikket-web-portal wrt needing to explicitly set @to in order to talk to 'self' services in Prosody, where to=nil is the same as to=account diff -r 42f43f1383db -r 48afaec5d1de mod_rest/mod_rest.lua --- a/mod_rest/mod_rest.lua Sun Mar 07 01:35:43 2021 +0100 +++ b/mod_rest/mod_rest.lua Sun Mar 07 21:02:18 2021 +0100 @@ -241,7 +241,7 @@ end local to = jid.prep(payload.attr.to); - if not to then + if payload.attr.to and not to then return post_errors.new("to"); end