@@ -153,15 +153,15 @@ string GetCover()
153153
154154 List < string > GetGenres ( )
155155 {
156- var v = GetValue ( "标签 " ) ;
156+ var v = GetValue ( "ジャンル " ) ;
157157 if ( string . IsNullOrWhiteSpace ( v ) )
158158 return null ;
159159 return v . Split ( ',' ) . Select ( o => o . Trim ( ) ) . Distinct ( ) . ToList ( ) ;
160160 }
161161
162162 List < string > GetActors ( )
163163 {
164- var v = GetValue ( "女优 " ) ;
164+ var v = GetValue ( "出演者 " ) ;
165165 if ( string . IsNullOrWhiteSpace ( v ) )
166166 return null ;
167167 var ac = v . Split ( ',' ) . Select ( o => o . Trim ( ) ) . Distinct ( ) . ToList ( ) ;
@@ -180,11 +180,11 @@ List<string> GetSamples()
180180 Url = url ,
181181 Title = node . SelectSingleNode ( ".//h3/text()" ) ? . InnerText ? . Trim ( ) ,
182182 Cover = GetCover ( ) ,
183- Num = GetValue ( "番号 " ) ? . ToUpper ( ) ,
184- Date = GetValue ( "发行日期 " ) ,
185- Runtime = GetValue ( "播放时长 " ) ,
186- Maker = GetValue ( "片商 " ) ,
187- Studio = GetValue ( "片商 " ) ,
183+ Num = GetValue ( "品番 " ) ? . ToUpper ( ) ,
184+ Date = GetValue ( "配信開始日 " ) ,
185+ Runtime = GetValue ( "収録時間 " ) ,
186+ Maker = GetValue ( "メーカー " ) ,
187+ Studio = GetValue ( "メーカー " ) ,
188188 Set = GetValue ( "系列" ) ,
189189 Director = GetValue ( "导演" ) ,
190190 Genres = GetGenres ( ) ,
0 commit comments