From 86e5673cdbffdf0d66262da478bc9a0d96ff635c Mon Sep 17 00:00:00 2001 From: Adam Pardyl Date: Fri, 9 Aug 2019 16:53:39 +0200 Subject: [PATCH] Fix variable name in DataAdb A typo in a variable name caused the exception handling to fail. Bug: Test: yarn run dev Change-Id: Id02495fe323bbb7f6ccbb973fbe6091a3d518523 --- tools/winscope/src/DataAdb.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winscope/src/DataAdb.vue b/tools/winscope/src/DataAdb.vue index f7519d1d4..4809bb6fd 100644 --- a/tools/winscope/src/DataAdb.vue +++ b/tools/winscope/src/DataAdb.vue @@ -228,7 +228,7 @@ export default { view.$emit('dataReady', view.dataFiles); } } catch (err) { - view.errorText = ex; + view.errorText = err; view.status = STATES.ERROR; } }, "arraybuffer")