Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/kcrg/YoutubeExplode
Browse files Browse the repository at this point in the history
  • Loading branch information
kcrg committed Oct 21, 2024
2 parents 28d9f5f + ec18b79 commit 1310eaa
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions YoutubeExplode/Bridge/SearchResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,22 +177,6 @@ public class PlaylistData(JsonElement content)
?.GetPropertyOrNull("browseId")
?.GetStringOrNull();

[Lazy]
public long? ViewCount =>
content
.GetPropertyOrNull("viewCountText")
?.GetPropertyOrNull("simpleText")
?.GetStringOrNull()
?.StripNonDigit()
?.ParseLongOrNull();

[Lazy]
public string? SimpleUploadDate =>
content
.GetPropertyOrNull("publishedTimeText")
?.GetPropertyOrNull("simpleText")
?.GetStringOrNull();

[Lazy]
public IReadOnlyList<ThumbnailData> Thumbnails =>
content
Expand Down

0 comments on commit 1310eaa

Please sign in to comment.