Frameset has to implement Serializable or NewPipe fails
java.lang.RuntimeException: Parcelable encountered IOException writing serializable object (name = org.schabi.newpipe.extractor.stream.StreamInfo) ... Caused by: java.io.NotSerializableException: org.schabi.newpipe.extractor.stream.Frameset ...
This commit is contained in:
parent
17ccaf4b87
commit
0f9ed020a4
1 changed files with 2 additions and 1 deletions
|
@ -1,8 +1,9 @@
|
|||
package org.schabi.newpipe.extractor.stream;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public final class Frameset {
|
||||
public final class Frameset implements Serializable {
|
||||
|
||||
private final List<String> urls;
|
||||
private final int frameWidth;
|
||||
|
|
Loading…
Reference in a new issue