Make some items serializable and fix channel feed url

This commit is contained in:
Mauricio Colli
2017-04-21 09:11:14 -03:00
parent 08457de763
commit afef926844
5 changed files with 23 additions and 24 deletions

View File

@@ -18,8 +18,10 @@ package org.schabi.newpipe.extractor;
* along with NewPipe. If not, see <http://www.gnu.org/licenses/>.
*/
import java.io.Serializable;
/**Common properties between StreamInfo and StreamInfoItem.*/
public abstract class AbstractStreamInfo {
public abstract class AbstractStreamInfo implements Serializable{
public enum StreamType {
NONE, // placeholder to check if stream type was checked or not
VIDEO_STREAM,