diff options
Diffstat (limited to 'activitypub.c')
| -rw-r--r-- | activitypub.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c index 9a49ba9..748327b 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -2696,6 +2696,14 @@ int migrate_account(snac *user) | |||
| 2696 | return 1; | 2696 | return 1; |
| 2697 | } | 2697 | } |
| 2698 | 2698 | ||
| 2699 | xs *move = msg_move(user, new_account); | ||
| 2700 | xs *fwers = follower_list(user); | ||
| 2701 | |||
| 2702 | xs_json_dump(move, 4, stdout); | ||
| 2703 | printf("\n"); | ||
| 2704 | xs_json_dump(fwers, 4, stdout); | ||
| 2705 | printf("\n"); | ||
| 2706 | |||
| 2699 | return 0; | 2707 | return 0; |
| 2700 | } | 2708 | } |
| 2701 | 2709 | ||