From 8a9de2f0429cbea022a6eb629e737f13c769d758 Mon Sep 17 00:00:00 2001 From: Adhiraj Singh Date: Mon, 14 Mar 2022 19:49:41 +0530 Subject: [PATCH] fix: fetch order details on MD --- src/Socket/business.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Socket/business.ts b/src/Socket/business.ts index 9c9fadb..101c262 100644 --- a/src/Socket/business.ts +++ b/src/Socket/business.ts @@ -120,19 +120,19 @@ export const makeBusinessSocket = (config: SocketConfig) => { { tag: 'width', attrs: { }, - content: Buffer.from([ 49, 48, 48 ]) + content: Buffer.from('100') }, { tag: 'height', attrs: { }, - content: Buffer.from([ 49, 48, 48 ]) + content: Buffer.from('100') } ] }, { tag: 'token', attrs: { }, - content: Buffer.from(tokenBase64, 'base64') + content: Buffer.from(tokenBase64) } ] }