mirror of
https://github.com/ajayyy/SponsorBlockServer.git
synced 2025-12-14 07:27:01 +03:00
Properly catch user counter errors
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
var request = require('request');
|
||||
const fetch = require('node-fetch');
|
||||
|
||||
const config = require('../config.js');
|
||||
const getIP = require('../utils/getIP.js');
|
||||
@@ -6,11 +6,8 @@ const getHash = require('../utils/getHash.js');
|
||||
const logger = require('../utils/logger.js');
|
||||
|
||||
module.exports = function userCounter(req, res, next) {
|
||||
try {
|
||||
request.post(config.userCounterURL + "/api/v1/addIP?hashedIP=" + getHash(getIP(req), 1));
|
||||
} catch(e) {
|
||||
logger.debug("Failing to connect to user counter at: " + config.userCounterURL);
|
||||
}
|
||||
fetch(config.userCounterURL + "/api/v1/addIP?hashedIP=" + getHash(getIP(req), 1), { method: "POST" })
|
||||
.catch(() => logger.debug("Failing to connect to user counter at: " + config.userCounterURL))
|
||||
|
||||
next();
|
||||
}
|
||||
Reference in New Issue
Block a user