We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6ed54d3 + 55c5df6 commit 0a7b431Copy full SHA for 0a7b431
1 file changed
src/AdafruitIO_Group.cpp
@@ -345,7 +345,7 @@ void AdafruitIO_Group::call(AdafruitIO_Data *d) {
345
346
while (cur_cb) {
347
348
- if (strcmp(cur_cb->feed, d->feedName()) == 0 || cur_cb->feed == NULL) {
+ if (cur_cb->feed == NULL || strcmp(cur_cb->feed, d->feedName()) == 0) {
349
cur_cb->dataCallback(d);
350
}
351
0 commit comments