Fix Stripchat preview URLs
This commit is contained in:
parent
1205dc0d41
commit
8bcc1a262c
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue