We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 592e4ce commit 8447baeCopy full SHA for 8447bae
1 file changed
lib/session.js
@@ -127,6 +127,7 @@ export default class Session {
127
writeJson(this.sessionPath, {
128
state: STARTED,
129
prid: this.prid,
130
+ backport: this.backport,
131
// Filter out getters, those are likely encrypted data we don't need on the session.
132
config: Object.entries(Object.getOwnPropertyDescriptors(this.config))
133
.reduce((pv, [key, desc]) => {
@@ -271,6 +272,7 @@ export default class Session {
271
272
const sess = this.session;
273
if (sess.prid) {
274
this.prid = sess.prid;
275
+ this.backport = sess.backport;
276
this.config = sess.config;
277
}
278
return this;
0 commit comments