From 55af9e470364f3bdf1b54b0052c44f6059e7016b Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sun, 26 Aug 2018 20:02:43 -0400 Subject: [PATCH] fix https://www.reddit.com/r/uMatrix/comments/8lc9ia/ --- platform/chromium/vapi-background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/chromium/vapi-background.js b/platform/chromium/vapi-background.js index fc204f1c8..4cb0853b0 100644 --- a/platform/chromium/vapi-background.js +++ b/platform/chromium/vapi-background.js @@ -1336,7 +1336,7 @@ vAPI.cloud = (function() { var i = 0; for (;;) { jsonSlice = bin[dataKey + i.toString()]; - if ( jsonSlice === '' ) { + if ( jsonSlice === '' || jsonSlice === undefined ) { break; } json.push(jsonSlice);