webring fix and readme change

merge-requests/208/head
fatchan 4 years ago
parent 56a3f73184
commit 3763f48ec2
  1. 2
      README.md
  2. 2
      schedules/webring.js

@ -24,7 +24,7 @@ Anonymous imageboard software. Live instance at https://fatchan.org
## Setup
Please note:
#### 🚨 The software is not production-ready. There may be bugs and WILL be breaking changes. If you insist on running your own instance, always ensure you have up-to-date configs and db schema after pulling as these will be common breaking changes until a stable version is reached. 🚨
#### 🚨 The software is not production-ready. There may be bugs and WILL be breaking changes. If you insist on running your own instance, always ensure you have up-to-date configs and run `gulp migrate && gulp && pm2 reload all` after pulling. 🚨
- these instructions are not step-by-step or complete
- you should be able to read, be comfortable with a command line and have problem solving skills

@ -25,7 +25,7 @@ module.exports = async () => {
}));
for (let i = 0; i < rings.length; i++) {
const ring = rings[i];
if (!ring || !ring.name || !ring.endpoint || !ring.url) {
if (!ring || !ring.name || !ring.endpoint || !ring.url || ring.endpoint.includes(meta.url)) {
continue;
}
if (ring.following && ring.following.length > 0) {

Loading…
Cancel
Save