the console.error thing was wrong, but we dont want to print errors here anyway

merge-requests/208/head
Thomas Lynch 4 years ago
parent 6740d4d529
commit e3295864d7
  1. 4
      schedules/webring.js

@ -28,7 +28,9 @@ module.exports = async () => {
headers: {
'User-Agent':''
}
}).then(res => res.json()).catch(e => console.error);
})
.then(res => res.json())
.catch(e => {});
}));
for (let i = 0; i < rings.length; i++) {
const ring = rings[i];

Loading…
Cancel
Save