Camgirlfinder CB fix
This commit is contained in:
parent
1d44af51bd
commit
0b1209147c
|
@ -153,6 +153,8 @@ public class ModelMenuContributor {
|
|||
menu.getItems().add(openInBrowser);
|
||||
}
|
||||
|
||||
// CB (old): https://roomimg.stream.highwebmedia.com/ri/emiilycampbell.jpg?1745301588
|
||||
// CB (new): https://thumb.live.mmcdn.com/ri/emiilycampbell.jpg
|
||||
private void addOpenOnCamGirlFinder(ContextMenu menu, List<Model> selectedModels) {
|
||||
var openOnCamGirlFinder = new MenuItem("Search on CamGirlFinder");
|
||||
openOnCamGirlFinder.setOnAction(e -> {
|
||||
|
|
|
@ -55,7 +55,8 @@ public class Chaturbate extends AbstractSite {
|
|||
ChaturbateModel m = new ChaturbateModel(this);
|
||||
m.setName(normalizedName);
|
||||
m.setUrl(getBaseUrl() + '/' + normalizedName + '/');
|
||||
m.setPreview("https://roomimg.stream.highwebmedia.com/ri/" + normalizedName + ".jpg?" + Instant.now().getEpochSecond());
|
||||
// m.setPreview("https://roomimg.stream.highwebmedia.com/ri/" + normalizedName + ".jpg?" + Instant.now().getEpochSecond());
|
||||
m.setPreview("https://thumb.live.mmcdn.com/ri/" + normalizedName + ".jpg"); // + Instant.now().getEpochSecond());
|
||||
return m;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue