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 ad48420 commit 690c8c5Copy full SHA for 690c8c5
src/android/AudioPlayer.java
@@ -397,7 +397,7 @@ public long getCurrentPosition() {
397
* @return T=streaming, F=local
398
*/
399
public boolean isStreaming(String file) {
400
- if (file.contains("http://") || file.contains("https://") || file.contains("rtsp://")) {
+ if (file.contains("http://") || file.contains("https://") || file.contains("rtsp://") || file.contains("udp://")) {
401
return true;
402
}
403
else {
0 commit comments