aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Zot6/Receiver.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zotlabs/Zot6/Receiver.php b/Zotlabs/Zot6/Receiver.php
index 66559c9a5..ed7c33b3a 100644
--- a/Zotlabs/Zot6/Receiver.php
+++ b/Zotlabs/Zot6/Receiver.php
@@ -193,7 +193,9 @@ class Receiver {
case 'response': // upstream message
case 'sync':
default:
- $this->response = $this->handler->Notify($this->data,$this->hub);
+ if ($this->sender) {
+ $this->response = $this->handler->Notify($this->data,$this->hub);
+ }
break;
}