File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -666,9 +666,7 @@ class AcpClient {
666666 payloads . push (
667667 this . acpContractClient . createMemo (
668668 jobId ,
669- memoPayload ,
670- MemoType . MESSAGE ,
671- content ,
669+ isPrivate ? content : memoPayload ,
672670 isPrivate ? MemoType . OBJECT_URL : MemoType . MESSAGE ,
673671 true ,
674672 AcpJobPhases . NEGOTIATION
Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ class AcpJobOffering {
294294 }
295295 }
296296
297- let content = JSON . stringify ( finalServiceRequirement ) ;
297+ let content = JSON . stringify ( serviceRequirement ) ;
298298
299299 if ( this . isPrivate ) {
300300 const memoContent = await this . acpClient . createMemoContent (
@@ -308,9 +308,7 @@ class AcpJobOffering {
308308 payloads . push (
309309 this . acpContractClient . createMemo (
310310 jobId ,
311- JSON . stringify ( serviceRequirement ) ,
312- MemoType . MESSAGE ,
313- content ,
311+ this . isPrivate ? content : JSON . stringify ( serviceRequirement ) ,
314312 this . isPrivate ? MemoType . OBJECT_URL : MemoType . MESSAGE ,
315313 true ,
316314 AcpJobPhases . NEGOTIATION ,
You can’t perform that action at this time.
0 commit comments