summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2020-10-14 13:23:32 +0200
committerRobin Appelman <robin@icewind.nl>2020-10-14 13:23:32 +0200
commit2fb4f95f39da7e67bd7beb7a939569d97ca51928 (patch)
tree0185ccf12bfbe721be6fa0814d1dfac468187338
parent25cb4f5b8fd14b2acee2ac005c68e2cd41972614 (diff)
fix unfollow
Signed-off-by: Robin Appelman <robin@icewind.nl>
-rw-r--r--lib/Model/ActivityPub/Object/Follow.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Model/ActivityPub/Object/Follow.php b/lib/Model/ActivityPub/Object/Follow.php
index 7de6d2fc..1bd179be 100644
--- a/lib/Model/ActivityPub/Object/Follow.php
+++ b/lib/Model/ActivityPub/Object/Follow.php
@@ -31,6 +31,7 @@ declare(strict_types=1);
namespace OCA\Social\Model\ActivityPub\Object;
+use daita\MySmallPhpTools\IQueryRow;
use JsonSerializable;
use OCA\Social\Model\ActivityPub\ACore;
@@ -40,7 +41,7 @@ use OCA\Social\Model\ActivityPub\ACore;
*
* @package OCA\Social\Model\ActivityPub\Object
*/
-class Follow extends ACore implements JsonSerializable {
+class Follow extends ACore implements JsonSerializable, IQueryRow {
const TYPE = 'Follow';