diff options
author | Mario <mario@mariovavti.com> | 2019-06-14 09:13:57 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-06-14 09:13:57 +0200 |
commit | 925859377699654a359311a3655b7f19f010aab3 (patch) | |
tree | 682723a1b897fc3477d821ad25cd0c546938606a /Zotlabs | |
parent | 48604041e8b2f42c88b741dedae480029db72fdd (diff) | |
parent | 57ed9ec8e2e4d80e5508a62270d3a1d589dbba6b (diff) | |
download | volse-hubzilla-925859377699654a359311a3655b7f19f010aab3.tar.gz volse-hubzilla-925859377699654a359311a3655b7f19f010aab3.tar.bz2 volse-hubzilla-925859377699654a359311a3655b7f19f010aab3.zip |
Merge branch 'dev' into 'dev'
zot6 protocol edge case
See merge request hubzilla/core!1669
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Zot6/Receiver.php | 4 |
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; } |