Drop unused customSpecSuffix

This commit is contained in:
djmaze 2021-08-23 16:40:28 +02:00
parent f0549e1735
commit d6071a584e

View file

@ -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 : '')
: ''),