summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
authorGravatar default2024-09-27 17:40:05 +0200
committerGravatar default2024-09-27 17:40:05 +0200
commit56070513ae94cb8bee1a02e46791039afbc95dac (patch)
treef03da3eec8e87b83db2258e2143dd7a216b69e10 /activitypub.c
parentWhen editing a draft, the checkbox is kept set. (diff)
downloadsnac2-56070513ae94cb8bee1a02e46791039afbc95dac.tar.gz
snac2-56070513ae94cb8bee1a02e46791039afbc95dac.tar.xz
snac2-56070513ae94cb8bee1a02e46791039afbc95dac.zip
Added a warning to the 'migrate' command.
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c
index 748327b..de42735 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -2699,10 +2699,14 @@ int migrate_account(snac *user)
2699 xs *move = msg_move(user, new_account); 2699 xs *move = msg_move(user, new_account);
2700 xs *fwers = follower_list(user); 2700 xs *fwers = follower_list(user);
2701 2701
2702/*
2702 xs_json_dump(move, 4, stdout); 2703 xs_json_dump(move, 4, stdout);
2703 printf("\n"); 2704 printf("\n");
2704 xs_json_dump(fwers, 4, stdout); 2705 xs_json_dump(fwers, 4, stdout);
2705 printf("\n"); 2706 printf("\n");
2707*/
2708
2709 printf("WORK IN PROGRESS - NOT YET USABLE (BUT HARMLESS)\n");
2706 2710
2707 return 0; 2711 return 0;
2708} 2712}