File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,14 @@ internal partial class PlaylistBrowseResponse(JsonElement content) : IPlaylistDa
45
45
? . EnumerateArrayOrNull ( )
46
46
? . Select ( j => j . GetPropertyOrNull ( "text" ) ? . GetStringOrNull ( ) )
47
47
. WhereNotNull ( )
48
- . ConcatToString ( ) ;
48
+ . ConcatToString ( )
49
+ ?? SidebarPrimary
50
+ ? . GetPropertyOrNull ( "titleForm" )
51
+ ? . GetPropertyOrNull ( "inlineFormRenderer" )
52
+ ? . GetPropertyOrNull ( "formField" )
53
+ ? . GetPropertyOrNull ( "textInputFormFieldRenderer" )
54
+ ? . GetPropertyOrNull ( "value" )
55
+ ? . GetStringOrNull ( ) ;
49
56
50
57
[ Lazy ]
51
58
private JsonElement ? AuthorDetails =>
@@ -85,7 +92,14 @@ internal partial class PlaylistBrowseResponse(JsonElement content) : IPlaylistDa
85
92
? . EnumerateArrayOrNull ( )
86
93
? . Select ( j => j . GetPropertyOrNull ( "text" ) ? . GetStringOrNull ( ) )
87
94
. WhereNotNull ( )
88
- . ConcatToString ( ) ;
95
+ . ConcatToString ( )
96
+ ?? SidebarPrimary
97
+ ? . GetPropertyOrNull ( "descriptionForm" )
98
+ ? . GetPropertyOrNull ( "inlineFormRenderer" )
99
+ ? . GetPropertyOrNull ( "formField" )
100
+ ? . GetPropertyOrNull ( "textInputFormFieldRenderer" )
101
+ ? . GetPropertyOrNull ( "value" )
102
+ ? . GetStringOrNull ( ) ;
89
103
90
104
[ Lazy ]
91
105
public IReadOnlyList < ThumbnailData > Thumbnails =>
You can’t perform that action at this time.
0 commit comments