- fix empty host name in flaresolverr's host list
- update SC thumbnail url
This commit is contained in:
reusedname 2025-04-06 16:59:38 +05:00
parent 7a0dc3a371
commit e583aad604
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ public abstract class AbstractStripchatUpdateService extends PaginatedScheduledS
if (timestamp == 0) { if (timestamp == 0) {
return model.optString("previewUrlThumbBig"); return model.optString("previewUrlThumbBig");
} }
return MessageFormat.format("https://img.strpst.com/thumbs/{0}/{1}", String.valueOf(timestamp), String.valueOf(id)); return MessageFormat.format("https://img.doppiocdn.net/thumbs/{0}/{1}", String.valueOf(timestamp), String.valueOf(id));
} }
protected List<String> createTags(JSONObject model) { protected List<String> createTags(JSONObject model) {

View File

@ -34,7 +34,7 @@ function loadConfig() {
return this.value.join('\n'); return this.value.join('\n');
}, },
write: function (value) { write: function (value) {
this.value = value.split('\n') this.value = value === '' ? [] : value.split('\n')
}, },
owner: param owner: param
}); });