forked from j62/ctbrec
Fix thumbs in LiveJasmin followed tab
This commit is contained in:
parent
a335ef82dc
commit
9d5d719e3c
|
@ -4,6 +4,7 @@
|
||||||
* Main tabs can now be rearranged
|
* Main tabs can now be rearranged
|
||||||
* Added setting to change the font
|
* Added setting to change the font
|
||||||
* Added setting to hide table grid lines
|
* Added setting to hide table grid lines
|
||||||
|
* Fixed thumbs in LiveJasmin followed tab
|
||||||
|
|
||||||
4.5.0
|
4.5.0
|
||||||
========================
|
========================
|
||||||
|
|
|
@ -65,7 +65,7 @@ public class LiveJasminFollowedUpdateService extends PaginatedScheduledService {
|
||||||
String cellHtml = modelCell.html();
|
String cellHtml = modelCell.html();
|
||||||
String name = getText(cellHtml, "span[class~=performer_name_simple]").trim();
|
String name = getText(cellHtml, "span[class~=performer_name_simple]").trim();
|
||||||
LiveJasminModel model = (LiveJasminModel) liveJasmin.createModel(name);
|
LiveJasminModel model = (LiveJasminModel) liveJasmin.createModel(name);
|
||||||
model.setPreview(getTag(cellHtml, "img[class~=performer-image]").attr("data-jpg-src"));
|
model.setPreview(getTag(cellHtml, "img[class~=performer-image]").attr("data-src"));
|
||||||
model.setId(getTag(cellHtml, "span[class~=remove][class~=favorite]").attr("data-model-id"));
|
model.setId(getTag(cellHtml, "span[class~=remove][class~=favorite]").attr("data-model-id"));
|
||||||
models.add(model);
|
models.add(model);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue