From e71e38f62ea54f55071405d540777aab4509dac7 Mon Sep 17 00:00:00 2001 From: Timon <39559178+Its-treason@users.noreply.github.com> Date: Sat, 6 Jul 2024 19:37:36 +0200 Subject: [PATCH] fix(#2573): Fix broken resequenzing of requests (#2574) --- packages/bruno-electron/src/bru/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-electron/src/bru/index.js b/packages/bruno-electron/src/bru/index.js index 6fcd61883..7fe43218a 100644 --- a/packages/bruno-electron/src/bru/index.js +++ b/packages/bruno-electron/src/bru/index.js @@ -168,7 +168,7 @@ const jsonToBru = (json) => { type = 'http'; } - const sequence = _.get(json, 'meta.seq'); + const sequence = _.get(json, 'seq'); const bruJson = { meta: { name: _.get(json, 'name'),