From d6071a584e4b5f568972d7ea005b48d5bc09fc86 Mon Sep 17 00:00:00 2001 From: djmaze Date: Mon, 23 Aug 2021 16:40:28 +0200 Subject: [PATCH] Drop unused customSpecSuffix --- dev/Common/Links.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/Common/Links.js b/dev/Common/Links.js index 5d88f7ae6..4794e8b9c 100644 --- a/dev/Common/Links.js +++ b/dev/Common/Links.js @@ -30,9 +30,9 @@ export const * @param {string=} customSpecSuffix * @returns {string} */ - serverRequestRaw = (type, hash, customSpecSuffix) => + serverRequestRaw = (type, hash) => SERVER_PREFIX + '/Raw/' + SUB_QUERY_PREFIX + '/' - + (null == customSpecSuffix ? '0' : customSpecSuffix) + '/' + + '0/' // AuthAccountHash ? + (type ? type + '/' + (hash ? SUB_QUERY_PREFIX + '/' + hash : '') : ''),