aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Mail.php
diff options
context:
space:
mode:
authormrjive <mrjive@mrjive.it>2018-04-05 10:52:39 +0200
committerGitHub <noreply@github.com>2018-04-05 10:52:39 +0200
commita7ff2cc5ea11afd7b832bef24866abfb0220d022 (patch)
treee7dcd63bbfdaa6ae564c60d59ef60edf0e6ba7a7 /Zotlabs/Module/Mail.php
parent20ac91703d54679d2e5080ba2d4985e93986a515 (diff)
parentdcacdd23c87061dc15bd12ed2e959bcbe020c5df (diff)
downloadvolse-hubzilla-a7ff2cc5ea11afd7b832bef24866abfb0220d022.tar.gz
volse-hubzilla-a7ff2cc5ea11afd7b832bef24866abfb0220d022.tar.bz2
volse-hubzilla-a7ff2cc5ea11afd7b832bef24866abfb0220d022.zip
Merge pull request #3 from redmatrix/dev
Dev
Diffstat (limited to 'Zotlabs/Module/Mail.php')
-rw-r--r--Zotlabs/Module/Mail.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Mail.php b/Zotlabs/Module/Mail.php
index b58b169d0..ca183f644 100644
--- a/Zotlabs/Module/Mail.php
+++ b/Zotlabs/Module/Mail.php
@@ -67,14 +67,14 @@ class Mail extends \Zotlabs\Web\Controller {
if(! $recipient) {
$channel = \App::get_channel();
- $j = \Zotlabs\Zot\Finger::run($rstr,$channel);
+ $j = \Zotlabs\Zot\Finger::run(punify($rstr),$channel);
if(! $j['success']) {
notice( t('Unable to lookup recipient.') . EOL);
return;
}
- logger('message_post: lookup: ' . $url . ' ' . print_r($j,true));
+ logger('message_post: lookup: ' . $rstr . ' ' . print_r($j,true));
if(! $j['guid']) {
notice( t('Unable to communicate with requested channel.'));