Skip to content

Commit 91aeec3

Browse files
author
Michael Goffioul
committed
CB-13632: (android) Allow UDP media streaming.
1 parent 74772c3 commit 91aeec3

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
@@ -435,7 +435,7 @@ public long getCurrentPosition() {
435435
* @return T=streaming, F=local
436436
*/
437437
public boolean isStreaming(String file) {
438-
if (file.contains("http://") || file.contains("https://") || file.contains("rtsp://")) {
438+
if (file.contains("http://") || file.contains("https://") || file.contains("rtsp://") || file.contains("udp://")) {
439439
return true;
440440
}
441441
else {

0 commit comments

Comments
 (0)