Skip to content

Commit 8447bae

Browse files
committed
fixup! fix(git-node): fix handling of existing trailers
1 parent 592e4ce commit 8447bae

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

lib/session.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ export default class Session {
127127
writeJson(this.sessionPath, {
128128
state: STARTED,
129129
prid: this.prid,
130+
backport: this.backport,
130131
// Filter out getters, those are likely encrypted data we don't need on the session.
131132
config: Object.entries(Object.getOwnPropertyDescriptors(this.config))
132133
.reduce((pv, [key, desc]) => {
@@ -271,6 +272,7 @@ export default class Session {
271272
const sess = this.session;
272273
if (sess.prid) {
273274
this.prid = sess.prid;
275+
this.backport = sess.backport;
274276
this.config = sess.config;
275277
}
276278
return this;

0 commit comments

Comments
 (0)