From 56070513ae94cb8bee1a02e46791039afbc95dac Mon Sep 17 00:00:00 2001 From: default Date: Fri, 27 Sep 2024 17:40:05 +0200 Subject: [PATCH] Added a warning to the 'migrate' command. --- activitypub.c | 4 ++++ 1 file changed, 4 insertions(+) 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) xs *move = msg_move(user, new_account); xs *fwers = follower_list(user); +/* xs_json_dump(move, 4, stdout); printf("\n"); xs_json_dump(fwers, 4, stdout); printf("\n"); +*/ + + printf("WORK IN PROGRESS - NOT YET USABLE (BUT HARMLESS)\n"); return 0; }