Skip to content

Commit

Permalink
Add pageType in ParselyVideoMetadata class
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinAkram committed Jan 17, 2024
1 parent acb18da commit e980b33
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ public ParselyVideoMetadata(
@Nullable String thumbUrl,
@Nullable String title,
@Nullable Calendar pubDate,
@Nullable String pageType,
@NonNull int durationSeconds
) {
super(authors, videoId, section, tags, thumbUrl, title, pubDate);
super(authors, videoId, section, tags, thumbUrl, title, pubDate, pageType);
if (videoId == null) {
throw new NullPointerException("videoId cannot be null");
}
Expand Down

0 comments on commit e980b33

Please sign in to comment.