mirror of
https://github.com/TeamNewPipe/NewPipeExtractor
synced 2025-08-31 14:26:14 +00:00
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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user