From 8e230a620e46aa69e1dcfe4d819570eaf07d3f48 Mon Sep 17 00:00:00 2001 From: Edd Date: Wed, 27 Mar 2024 16:37:40 +0000 Subject: [PATCH] Add GB as restricted (#1167) Add GB to restricted countries list --- api/is-restricted.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/is-restricted.js b/api/is-restricted.js index 90a53b2b..c9cd2bb5 100644 --- a/api/is-restricted.js +++ b/api/is-restricted.js @@ -1,4 +1,4 @@ -const BLOCKED_COUNTRIES = ['US', 'CU', 'KP', 'IR', 'SY'] +const BLOCKED_COUNTRIES = ['US', 'CU', 'KP', 'IR', 'SY', 'GB'] function getCountry(req) { return req.headers['x-vercel-ip-country']