From 66eb566b92c16e777f4dcee7bc178af3cdf27ada Mon Sep 17 00:00:00 2001 From: Blake Erickson Date: Tue, 13 Jan 2026 14:26:30 -0700 Subject: [PATCH] Fix missing `Rfd` response type from `update_rfd_visibility` endpoint It appears that the Rfd response type handler was accidentially removed in #243. This causes the edit visibility command to print: ``` Unhandled response type: Rfd. Please report this as a bug. ``` The operation still succeeds though. You can reproduce this by running: ``` rfd-cli edit visibility --number 1 --visibility public ``` --- rfd-cli/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rfd-cli/src/main.rs b/rfd-cli/src/main.rs index cdf6adb2..0469f1d6 100644 --- a/rfd-cli/src/main.rs +++ b/rfd-cli/src/main.rs @@ -438,6 +438,7 @@ impl ProgenitorCliConfig for Context { self.printer().unwrap().output_rfd_list(reserialize(value)) } "RfdWithRaw" => self.printer().unwrap().output_rfd_full(reserialize(value)), + "Rfd" => self.printer().unwrap().output_rfd(reserialize(value)), "SearchResults" => self .printer() .unwrap()