aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2017-11-25 14:33:57 +0100
committerMario <mario@mariovavti.com>2017-11-25 14:35:07 +0100
commitd65740311bd376c7b7b4a88e561e6d0357e88643 (patch)
tree7bdb8840934890b8bc3bc65600b60066d58d1e91
parentd893eb67b80b123a9a5dc88e065211d5cbd7560a (diff)
downloadvolse-hubzilla-d65740311bd376c7b7b4a88e561e6d0357e88643.tar.gz
volse-hubzilla-d65740311bd376c7b7b4a88e561e6d0357e88643.tar.bz2
volse-hubzilla-d65740311bd376c7b7b4a88e561e6d0357e88643.zip
fix regression in cdav calendar widget
-rw-r--r--Zotlabs/Widget/Cdav.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Widget/Cdav.php b/Zotlabs/Widget/Cdav.php
index 60a860f93..589f915c5 100644
--- a/Zotlabs/Widget/Cdav.php
+++ b/Zotlabs/Widget/Cdav.php
@@ -63,9 +63,10 @@ class Cdav {
$sharees = [];
$share_displayname = [];
+
foreach($invites as $invite) {
if(strpos($invite->href, 'mailto:') !== false) {
- $sharee = channelx_by_hash(substr($invite->href, 7));
+ $sharee = channelx_by_nick(substr($invite->principal, 11));
$sharees[] = [
'name' => $sharee['channel_name'],
'access' => (($invite->access == 3) ? ' (RW)' : ' (R)'),
@@ -173,4 +174,4 @@ class Cdav {
}
}
-} \ No newline at end of file
+}