Skip to content

Commit

Permalink
Frameset has to implement Serializable or NewPipe fails
Browse files Browse the repository at this point in the history
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
...
  • Loading branch information
litetex committed Jun 15, 2021
1 parent 3a1252f commit eb0a74b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit eb0a74b

Please sign in to comment.