Update Dm84.java

This commit is contained in:
FongMi 2022-08-22 22:17:33 +08:00
parent 29d1b9548a
commit d86a1587a9
1 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ public class Dm84 extends Spider {
for (String text : texts) {
if (text.isEmpty()) continue;
JSONObject o = new JSONObject();
o.put("n", text.replace("", "")));
o.put("n", text.replace("", ""));
o.put("v", key.equals("by") ? replaceBy(text) : text);
array.put(o);
}
@ -166,7 +166,7 @@ public class Dm84 extends Spider {
}
}
if (sites.size() > 0) {
vod.setVodPlayFrom(TextUtils.join("$$$", sites.keySet())));
vod.setVodPlayFrom(TextUtils.join("$$$", sites.keySet()));
vod.setVodPlayUrl(TextUtils.join("$$$", sites.values()));
}
result.setList(Arrays.asList(vod));