Fork of github.com/did-method-plc/did-method-plc
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix error string format

+1 -1
+1 -1
packages/server/src/constraints.ts
··· 126 126 if (key.length > MAX_DID_KEY_LENGTH) { 127 127 throw new ServerError( 128 128 400, 129 - `Verification Method key too long (max ${MAX_DID_KEY_LENGTH}): ${id}`, 129 + `Verification Method key too long (max ${MAX_DID_KEY_LENGTH}): ${key}`, 130 130 ) 131 131 } 132 132 try {