Merge branch 'dev' into 'dev'

zot6 protocol edge case

See merge request hubzilla/core!1669
This commit is contained in:
Mario 2019-06-14 09:13:57 +02:00
commit 9258593776

View File

@ -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;
}