diff --git a/client/src/main/java/ctbrec/ui/sites/stripchat/AbstractStripchatUpdateService.java b/client/src/main/java/ctbrec/ui/sites/stripchat/AbstractStripchatUpdateService.java index 78f86f99..d9537b0f 100644 --- a/client/src/main/java/ctbrec/ui/sites/stripchat/AbstractStripchatUpdateService.java +++ b/client/src/main/java/ctbrec/ui/sites/stripchat/AbstractStripchatUpdateService.java @@ -16,7 +16,7 @@ public abstract class AbstractStripchatUpdateService extends PaginatedScheduledS if (timestamp == 0 || StringUtil.isBlank(snapshotServer)) { throw new IllegalStateException("Model seems to be offline"); } - return MessageFormat.format("https://img.strpst.com/{0}/thumbs/{1}/{2}_jpg", snapshotServer, String.valueOf(timestamp), String.valueOf(id)); + return MessageFormat.format("https://img.strpst.com/thumbs/{0}/{1}_jpg", String.valueOf(timestamp), String.valueOf(id)); } catch (Exception e) { return model.optString("previewUrlThumbBig"); }