소스 검색

Exclude "Other" browser from stats

Pouria Ezzati 7 년 전
부모
커밋
a3d08adfb7
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      server/controllers/urlController.js

+ 2 - 1
server/controllers/urlController.js

@@ -109,7 +109,8 @@ exports.goToUrl = async (req, res, next) => {
   const location = geoip.lookup(req.realIp);
   const country = location && location.country;
   const urls = await findUrl({ id, domain });
-  const isBot = botList.some(bot => agent.source.toLowerCase().includes(bot));
+  const isBot =
+    botList.some(bot => agent.source.toLowerCase().includes(bot)) || agent.family === 'Other';
   if (!urls && !urls.length) return next();
   const [url] = urls;
   if (url.password && !req.body.password) {