From c771123d42f8b746762f3869f9e3724db91c5848 Mon Sep 17 00:00:00 2001 From: HF Date: Sun, 11 Sep 2022 02:27:50 +0200 Subject: [PATCH] fix more --- src/store/actions/fetch.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/store/actions/fetch.js b/src/store/actions/fetch.js index 5ba55ff..072dd4a 100644 --- a/src/store/actions/fetch.js +++ b/src/store/actions/fetch.js @@ -9,7 +9,10 @@ import { t } from 'ttag'; import { dateToString } from '../../core/utils'; export const shardHost = (function getShardHost() { - if (!window.ssv || !window.ssv.shard) { + if (!window.ssv + || !window.ssv.shard + || window.location.host === 'fuckyouarkeros.fun' + ) { return ''; } const hostParts = window.location.host.split('.');