Skip to content

Commit 95df2bb

Browse files
authored
Merge pull request #120 from xjasonlyu/fix
修复了由于Jav123字段变更引起的BUG
2 parents 16414a1 + 7361081 commit 95df2bb

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Emby.Plugins.JavScraper/Scrapers/Jav123.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)