We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef1a008 commit 3e49ff2Copy full SHA for 3e49ff2
src/blocks/AdafruitIO_Block.cpp
@@ -62,12 +62,8 @@ bool AdafruitIO_Block::save()
62
url += _dashboard->name;
63
url += "/blocks";
64
65
- String user = _dashboard->user();
66
- user.replace("_", "-");
67
-
68
- String block_feeds = "[{\"group_id\": \"";
69
- block_feeds += user;
70
- block_feeds += "\",\"feed_id\":\"";
+ String block_feeds = "[{\"group_id\":\"default\",";
+ block_feeds += "\"feed_id\":\"";
71
block_feeds += _feed->name;
72
block_feeds += "\"}]";
73
0 commit comments