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 4ab9c59 commit 6f2166aCopy full SHA for 6f2166a
src/AudioTools/CoreAudio/AudioHttp/HttpLineReader.h
@@ -21,8 +21,8 @@ class HttpLineReader {
21
int result = 0;
22
LOGD("HttpLineReader %s", "readlnInternal");
23
// wait for first character
24
- for (int w = 0; w < 20 && client.available() == 0; w++) {
25
- delay(100);
+ for (int w = 0; w < 200 && client.available() == 0; w++) {
+ delay(10);
26
}
27
// if we do not have any data we stop
28
if (client.available() == 0) {
0 commit comments