From cfa482aa031dc54ba47b98c0295db228d9fa815d Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Mon, 8 Sep 2025 02:14:09 +0200 Subject: [PATCH] fix: Added missing default for IkeaRemote callback --- 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,