aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-11-23 12:25:05 -0800
committerzotlabs <mike@macgirvin.com>2018-11-23 12:25:05 -0800
commitc5a9b00eaec750e2983e0e46565b7305fe4ae27e (patch)
tree97f385c590fa5869538724a6531e301b628f5b01 /Zotlabs
parent9a8d1200ecc9f877b431a00a5219b41d2bd68de6 (diff)
downloadvolse-hubzilla-c5a9b00eaec750e2983e0e46565b7305fe4ae27e.tar.gz
volse-hubzilla-c5a9b00eaec750e2983e0e46565b7305fe4ae27e.tar.bz2
volse-hubzilla-c5a9b00eaec750e2983e0e46565b7305fe4ae27e.zip
Organization actor type was missing
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Lib/ActivityStreams.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Lib/ActivityStreams.php b/Zotlabs/Lib/ActivityStreams.php
index a322637fd..49978031e 100644
--- a/Zotlabs/Lib/ActivityStreams.php
+++ b/Zotlabs/Lib/ActivityStreams.php
@@ -284,7 +284,7 @@ class ActivityStreams {
}
static function is_an_actor($s) {
- return(in_array($s,[ 'Application','Group','Service','Person','Service' ]));
+ return(in_array($s,[ 'Application','Group','Organization','Person','Service' ]));
}
/**