diff options
author | Mario <mario@mariovavti.com> | 2020-10-12 20:28:48 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-10-12 20:28:48 +0000 |
commit | 5f93157d5a5cc824d98c39d1983d882df0a13067 (patch) | |
tree | 756c32aae616b7d7ce53e5b80fdf269dc1d54d2b /Zotlabs/Lib/Libzot.php | |
parent | 8d3c201830020d63a5204df04fdcb2ae04bf2b0f (diff) | |
download | volse-hubzilla-5f93157d5a5cc824d98c39d1983d882df0a13067.tar.gz volse-hubzilla-5f93157d5a5cc824d98c39d1983d882df0a13067.tar.bz2 volse-hubzilla-5f93157d5a5cc824d98c39d1983d882df0a13067.zip |
improve find_best_identity() and fix wrong variable
Diffstat (limited to 'Zotlabs/Lib/Libzot.php')
-rw-r--r-- | Zotlabs/Lib/Libzot.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Lib/Libzot.php b/Zotlabs/Lib/Libzot.php index fb64626d6..654b0461b 100644 --- a/Zotlabs/Lib/Libzot.php +++ b/Zotlabs/Lib/Libzot.php @@ -1469,8 +1469,8 @@ class Libzot { // Make sure we use the zot6 identity where applicable - $msg_arr['author_xchan'] = Activity::find_best_identity($msg_arr['author_xchan']); - $msg_arr['owner_xchan'] = Activity::find_best_identity($msg_arr['owner_xchan']); + $arr['author_xchan'] = Activity::find_best_identity($arr['author_xchan']); + $arr['owner_xchan'] = Activity::find_best_identity($arr['owner_xchan']); // We've validated the sender. Now make sure that the sender is the owner or author |