Fix thumbs in LiveJasmin followed tab

This commit is contained in:
0xb00bface 2021-08-27 17:10:30 +02:00
parent a335ef82dc
commit 9d5d719e3c
2 changed files with 2 additions and 1 deletions

View File

@ -4,6 +4,7 @@
* Main tabs can now be rearranged
* Added setting to change the font
* Added setting to hide table grid lines
* Fixed thumbs in LiveJasmin followed tab
4.5.0
========================

View File

@ -65,7 +65,7 @@ public class LiveJasminFollowedUpdateService extends PaginatedScheduledService {
String cellHtml = modelCell.html();
String name = getText(cellHtml, "span[class~=performer_name_simple]").trim();
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"));
models.add(model);
}