From 3a7f2f9bd79bb5bbd04b6ca5e1f2920c4ec41f76 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Mon, 8 Sep 2025 02:14:09 +0200 Subject: [PATCH] fix: IkeaRemote callback is missing default specifier --- automation_devices/src/ikea_remote.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation_devices/src/ikea_remote.rs b/automation_devices/src/ikea_remote.rs index 1700178..c6071a5 100644 --- a/automation_devices/src/ikea_remote.rs +++ b/automation_devices/src/ikea_remote.rs @@ -23,7 +23,7 @@ pub struct Config { #[device_config(from_lua)] pub client: WrappedAsyncClient, - #[device_config(from_lua)] + #[device_config(from_lua, default)] pub callback: ActionCallback, #[device_config(from_lua, default)] pub battery_callback: ActionCallback,