fixed gitignore

This commit is contained in:
2020-08-31 16:43:07 +03:00
parent 589493ae69
commit 6a1f450cef
1081 changed files with 2 additions and 121998 deletions

View File

@@ -17,7 +17,7 @@ app.use(Cors());
app.get('/update', (req, res) => {
var id = statusIds[Math.floor(Math.random() * statusIds.length)];
let url = `https://api.vk.com/method/users.setCovidStatus?access_token=${process.env.TOKEN}&status_id=${id}&v=5.103`;
httpsReq(url).then(() => {
httpsReq(url).then((response) => {
console.log(response);
res.redirect("https://status.anatolykopyl.ru");
});