projects
/
friendica.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a86541
)
Fallback to Diaspora if DFRN transmission fails (#5487)
author
Michael Vogel
<icarus@dabo.de>
Tue, 24 Jul 2018 18:12:09 +0000
(20:12 +0200)
committer
Hypolite Petovan
<mrpetovan@eml.cc>
Tue, 24 Jul 2018 18:12:09 +0000
(14:12 -0400)
src/Worker/Delivery.php
patch
|
blob
|
history
diff --git
a/src/Worker/Delivery.php
b/src/Worker/Delivery.php
index 87e3024882e6ca7b9d4d9d11d694f0f73739a5a6..022faa2d7ac26a07e5d0a14be27b8f49baa6a47c 100644
(file)
--- a/
src/Worker/Delivery.php
+++ b/
src/Worker/Delivery.php
@@
-309,6
+309,10
@@
class Delivery extends BaseObject
} else {
// The message could not be delivered. We mark the contact as "dead"
Contact::markForArchival($contact);
+
+ // Transmit via Diaspora when all other methods (legacy DFRN and new one) are failing.
+ // This is a fallback for systems that don't know the new methods.
+ self::deliverDiaspora($cmd, $contact, $owner, $items, $target_item, $public_message, $top_level, $followup);
}
}