From 5e6f5cfdf09c449712b34057a11e34908782abc1 Mon Sep 17 00:00:00 2001
From: alemi <me@alemi.dev>
Date: Wed, 22 Jan 2025 22:09:53 +0100
Subject: [PATCH] fix(cli): also change command invocation

---
 cli/src/lib.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cli/src/lib.rs b/cli/src/lib.rs
index d82be7b..5547a91 100644
--- a/cli/src/lib.rs
+++ b/cli/src/lib.rs
@@ -175,8 +175,8 @@ pub async fn run(ctx: upub::Context, command: CliCommand) -> Result<(), Box<dyn
 			Ok(nuke(ctx, for_real, delete_objects).await?),
 		CliCommand::Thread { } =>
 			Ok(thread(ctx).await?),
-		CliCommand::Cloak { objects, actors, contents } =>
-			Ok(cloak(ctx, contents, objects, actors).await?),
+		CliCommand::Cloak { objects, actors, contents, re_cloak } =>
+			Ok(cloak(ctx, contents, objects, actors, re_cloak).await?),
 		CliCommand::FixActivities { likes, announces } =>
 			Ok(fix_activities(ctx, likes, announces).await?),
 	}