Skip to content

Commit 690c8c5

Browse files
author
Michael Goffioul
committed
CB-13632: (android) Allow UDP media streaming.
1 parent ad48420 commit 690c8c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/android/AudioPlayer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ public long getCurrentPosition() {
397397
* @return T=streaming, F=local
398398
*/
399399
public boolean isStreaming(String file) {
400-
if (file.contains("http://") || file.contains("https://") || file.contains("rtsp://")) {
400+
if (file.contains("http://") || file.contains("https://") || file.contains("rtsp://") || file.contains("udp://")) {
401401
return true;
402402
}
403403
else {

0 commit comments

Comments
 (0)