diff --git a/vigilar/cli/cmd_config.py b/vigilar/cli/cmd_config.py index 907f8da..b78bfba 100644 --- a/vigilar/cli/cmd_config.py +++ b/vigilar/cli/cmd_config.py @@ -49,6 +49,8 @@ def show_cmd(config_path: str | None) -> None: data["web"]["password_hash"] = "***" if data.get("security", {}).get("pin_hash"): data["security"]["pin_hash"] = "***" + if data.get("security", {}).get("recovery_passphrase_hash"): + data["security"]["recovery_passphrase_hash"] = "***" if data.get("alerts", {}).get("webhook", {}).get("secret"): data["alerts"]["webhook"]["secret"] = "***" click.echo(json.dumps(data, indent=2))