We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65490a5 commit dd43a8fCopy full SHA for dd43a8f
src/handlers/motions/motionFinalized/helpers.ts
@@ -478,6 +478,14 @@ export const linkPendingStreamingPaymentMetadata = async ({
478
return;
479
}
480
481
+ const hasEndConditionChanged =
482
+ currentStreamingPaymentMetadata.endCondition !==
483
+ pendingStreamingPaymentMetadata.endCondition;
484
+
485
+ if (!hasEndConditionChanged) {
486
+ return;
487
+ }
488
489
await mutate<
490
UpdateStreamingPaymentMetadataMutation,
491
UpdateStreamingPaymentMetadataMutationVariables
0 commit comments