BusEventImpl: Fix source not passed for sendCommand(Item, String, String) (#5150)

Signed-off-by: Florian Hotze <dev@florianhotze.com>
This commit is contained in:
Florian Hotze
2025-11-25 18:17:32 +01:00
committed by GitHub
parent 1aa3f67bde
commit ac59fba8a7
@@ -69,7 +69,7 @@ public class BusEventImpl implements BusEvent {
@Override
public void sendCommand(Item item, String commandString, @Nullable String source) {
if (item != null) {
sendCommand(item.getName(), commandString);
sendCommand(item.getName(), commandString, source);
}
}