Merge pull request #322 from mediaformat/fix-migrate_from_0_17
fix migrate_from_0_17() error
This commit is contained in:
commit
234b373d98
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ class Migration {
|
||||||
$followers = get_user_meta( $user_id, 'activitypub_followers', true );
|
$followers = get_user_meta( $user_id, 'activitypub_followers', true );
|
||||||
|
|
||||||
if ( $followers ) {
|
if ( $followers ) {
|
||||||
foreach ( $followers as $follower ) {
|
foreach ( $followers as $actor ) {
|
||||||
$meta = get_remote_metadata_by_actor( $actor );
|
$meta = get_remote_metadata_by_actor( $actor );
|
||||||
|
|
||||||
$follower = new Follower( $actor );
|
$follower = new Follower( $actor );
|
||||||
|
|
Loading…
Reference in a new issue