Merge pull request #441 from tpmanley/bugfix/arrival_readattr_events

arrival: Keep 'read attr' messages from being turned into events
This commit is contained in:
Tom Manley
2016-01-15 09:51:39 -06:00

View File

@@ -76,6 +76,8 @@ def parse(String description) {
if (description?.startsWith('read attr -')) { if (description?.startsWith('read attr -')) {
handleReportAttributeMessage(description) handleReportAttributeMessage(description)
} }
return []
} }
private handleReportAttributeMessage(String description) { private handleReportAttributeMessage(String description) {