From ce20081d28f56c2fdd9d1f6bf2fae11c61cb082f Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 28 Apr 2020 03:52:07 +0000 Subject: [PATCH] Fix wrong field name --- src/Protocol/Diaspora.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index 0cefb8def6..7e76662d71 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -124,7 +124,7 @@ class Diaspora } // All tags of the current post - $tags = DBA::select('tag-view', ['term'], ['uri-id' => $parent['uri-id'], 'type' => Tag::HASHTAG]); + $tags = DBA::select('tag-view', ['name'], ['uri-id' => $parent['uri-id'], 'type' => Tag::HASHTAG]); $taglist = []; while ($tag = DBA::fetch($tags)) { $taglist[] = $tag['name']; -- 2.39.5