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 e30c138 commit f7f96e2Copy full SHA for f7f96e2
src/AudioTools/CoreAudio/AudioHttp/URLStream.h
@@ -249,8 +249,9 @@ class URLStream : public AbstractURLStream {
249
delay(500);
250
}
251
252
- LOGD("available: %d", request.available());
253
- return request.available() > 0;
+ int avail = request.available();
+ LOGD("available: %d", avail);
254
+ return avail > 0;
255
256
257
0 commit comments