Update CB URL for CMF

This commit is contained in:
jafea7 2025-04-27 17:39:22 +10:00
parent 924726a7b5
commit 211231899f
1 changed files with 2 additions and 1 deletions

View File

@ -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");
return m;
}