Camgirlfinder CB fix

This commit is contained in:
jafea7 2025-04-22 16:17:56 +10:00 committed by Jafea7
parent ae1e4d6c24
commit bf64a92875
2 changed files with 4 additions and 1 deletions

View File

@ -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 -> {

View File

@ -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;
} }