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.
2 parents 9135780 + 9a60d10 commit 0f59251Copy full SHA for 0f59251
src/extensions/scratch3_boost/index.js
@@ -1804,7 +1804,11 @@ class Scratch3BoostBlocks {
1804
}
1805
1806
});
1807
- return Promise.resolve();
+ return new Promise(resolve => {
1808
+ window.setTimeout(() => {
1809
+ resolve();
1810
+ }, BoostBLE.sendInterval);
1811
+ });
1812
1813
1814
/**
@@ -1852,7 +1856,11 @@ class Scratch3BoostBlocks {
1852
1856
1853
1857
1854
1858
1855
1859
1860
1861
1862
1863
1864
1865
1866
0 commit comments