]> git.mxchange.org Git - friendica.git/blobdiff - src/Protocol/Activity.php
Merge pull request #13724 from Raroun/Fix-for-Issue-#13637---Photo-caption-prevents...
[friendica.git] / src / Protocol / Activity.php
index aa322f4cf261a1ebb353461d68561c2c9c800b60..36bc5e99b384008b60eebcc11ca0330d64fadd4c 100644 (file)
@@ -169,15 +169,21 @@ final class Activity
         * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-read
         * @var string
         */
-       const READ       = ActivityNamespace::ACTIVITY2 . 'read';
-
+       const READ       = ActivityNamespace::ACTIVITY2 . 'Read';
+       /**
+        *  Indicates that the actor has listened to the object. 
+        *
+        * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-listen
+        * @var string
+        */
+       const LISTEN     = ActivityNamespace::ACTIVITY2 . 'Listen';
        /**
         * Indicates that the actor has viewed the object.
         *
         * @see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-view
         * @var string
         */
-       const VIEW       = ActivityNamespace::ACTIVITY2 . 'view';
+       const VIEW       = ActivityNamespace::ACTIVITY2 . 'View';
 
        const O_UNFOLLOW    = ActivityNamespace::OSTATUS . '/unfollow';
        const O_UNFAVOURITE = ActivityNamespace::OSTATUS . '/unfavorite';