fix(cli): also change command invocation

This commit is contained in:
əlemi 2025-01-22 22:09:53 +01:00
parent 430165c300
commit 5e6f5cfdf0
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -175,8 +175,8 @@ pub async fn run(ctx: upub::Context, command: CliCommand) -> Result<(), Box<dyn
Ok(nuke(ctx, for_real, delete_objects).await?), Ok(nuke(ctx, for_real, delete_objects).await?),
CliCommand::Thread { } => CliCommand::Thread { } =>
Ok(thread(ctx).await?), Ok(thread(ctx).await?),
CliCommand::Cloak { objects, actors, contents } => CliCommand::Cloak { objects, actors, contents, re_cloak } =>
Ok(cloak(ctx, contents, objects, actors).await?), Ok(cloak(ctx, contents, objects, actors, re_cloak).await?),
CliCommand::FixActivities { likes, announces } => CliCommand::FixActivities { likes, announces } =>
Ok(fix_activities(ctx, likes, announces).await?), Ok(fix_activities(ctx, likes, announces).await?),
} }