From 7d0748c6102f9667239945f0d8fc5b03a77ff896 Mon Sep 17 00:00:00 2001 From: mauriciocolli Date: Fri, 10 Mar 2017 21:09:37 -0300 Subject: [PATCH] Make VideoStream implements Serializable --- stream_info/VideoStream.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stream_info/VideoStream.java b/stream_info/VideoStream.java index c3e12fdbd..978773574 100644 --- a/stream_info/VideoStream.java +++ b/stream_info/VideoStream.java @@ -1,5 +1,7 @@ package org.schabi.newpipe.extractor.stream_info; +import java.io.Serializable; + /** * Created by Christian Schabesberger on 04.03.16. * @@ -20,7 +22,7 @@ package org.schabi.newpipe.extractor.stream_info; * along with NewPipe. If not, see . */ -public class VideoStream { +public class VideoStream implements Serializable{ //url of the stream public String url = ""; public int format = -1;