We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0976a01 commit 32caa00Copy full SHA for 32caa00
includes/table/class-followers.php
@@ -207,6 +207,7 @@ public function prepare_items() {
207
foreach ( $followers as $follower ) {
208
$actor = Actors::get_actor( $follower );
209
$this->items[] = array(
210
+ 'id' => $follower->ID,
211
'icon' => $actor->get_icon()['url'] ?? '',
212
'post_title' => $actor->get_name(),
213
'username' => $actor->get_preferred_username(),
includes/table/class-following.php
@@ -218,7 +218,7 @@ public function prepare_items() {
218
);
219
220
foreach ( $followings as $following ) {
221
- $actor = Actors::get_actor( $following->ID );
+ $actor = Actors::get_actor( $following );
222
223
224
'id' => $following->ID,
0 commit comments