diff options
author | zotlabs <mike@macgirvin.com> | 2018-11-23 12:25:05 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-11-23 12:25:05 -0800 |
commit | c5a9b00eaec750e2983e0e46565b7305fe4ae27e (patch) | |
tree | 97f385c590fa5869538724a6531e301b628f5b01 /Zotlabs | |
parent | 9a8d1200ecc9f877b431a00a5219b41d2bd68de6 (diff) | |
download | volse-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.php | 2 |
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' ])); } /** |