mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-01-31 06:39:11 +00:00
70_BOTVAC.pm: fixed command queue stop if upnp service is not available
git-svn-id: https://svn.fhem.de/fhem/trunk@19191 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
5ec28cb793
commit
f60c8b16bc
@ -1,5 +1,6 @@
|
||||
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide.
|
||||
# Do not insert empty lines here, update check depends on it.
|
||||
- bugfix: 70_BRAVIA: fix command queue stops if upnp service is not available
|
||||
- change: dummy/MQTT2_DEVICE/ZWave: setExtensionsEvent attr (Forum #95581)
|
||||
- change: 93_DbLog: add support for Meta.pm and delayed shutdown, attribute
|
||||
shutdownWait removed, direct attribute help in FHEMWEB,
|
||||
|
@ -1034,9 +1034,12 @@ sub ReceiveCommand($$$) {
|
||||
}
|
||||
|
||||
# stop pulling for current interval
|
||||
Log3($name, 4, "BRAVIA $name: drop successors");
|
||||
LogSuccessors($hash, @successor);
|
||||
return;
|
||||
# upnp service might not run at all, e.g. on KDL-65W857C
|
||||
if ($service ne "upnp") {
|
||||
Log3($name, 4, "BRAVIA $name: drop successors");
|
||||
LogSuccessors($hash, @successor);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
# data received
|
||||
|
Loading…
Reference in New Issue
Block a user