Skip to content

Commit

Permalink
Merge pull request #401 from DanGould/fix-reduce-isolates
Browse files Browse the repository at this point in the history
Mark receiver session in receiver
  • Loading branch information
i5hi authored Dec 27, 2024
2 parents 83326a4 + d9098e1 commit a118d9a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/_pkg/payjoin/manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,8 @@ class PayjoinManager {
});
case 'proposal_sent':
await _cleanupSession(receiver.id());
await _payjoinStorage.markSenderSessionComplete(receiver.id());
await _payjoinStorage
.markReceiverSessionComplete(receiver.id());
completer.complete(null);
}
} catch (e) {
Expand Down

0 comments on commit a118d9a

Please sign in to comment.