Camgirlfinder CB fix
This commit is contained in:
parent
ae1e4d6c24
commit
bf64a92875
|
@ -153,6 +153,8 @@ public class ModelMenuContributor {
|
||||||
menu.getItems().add(openInBrowser);
|
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) {
|
private void addOpenOnCamGirlFinder(ContextMenu menu, List<Model> selectedModels) {
|
||||||
var openOnCamGirlFinder = new MenuItem("Search on CamGirlFinder");
|
var openOnCamGirlFinder = new MenuItem("Search on CamGirlFinder");
|
||||||
openOnCamGirlFinder.setOnAction(e -> {
|
openOnCamGirlFinder.setOnAction(e -> {
|
||||||
|
|
|
@ -55,7 +55,8 @@ public class Chaturbate extends AbstractSite {
|
||||||
ChaturbateModel m = new ChaturbateModel(this);
|
ChaturbateModel m = new ChaturbateModel(this);
|
||||||
m.setName(normalizedName);
|
m.setName(normalizedName);
|
||||||
m.setUrl(getBaseUrl() + '/' + 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;
|
return m;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue