From 5f4db2e78c7fff8453e1926d0cedc27c82cec4d7 Mon Sep 17 00:00:00 2001 From: BartS23 <10829389+BartS23@users.noreply.github.com> Date: Tue, 12 Jul 2022 14:14:49 +0200 Subject: [PATCH] Don't treat "Uncaught Storage Updated!" as error --- bin/thumbnailer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/thumbnailer.js b/bin/thumbnailer.js index e94ec5229..e1d427131 100755 --- a/bin/thumbnailer.js +++ b/bin/thumbnailer.js @@ -97,7 +97,7 @@ function getThumbnail(appId, imageFn) { var firstPixel = rgba32[0]; var blankImage = rgba32.every(col=>col==firstPixel) - if (appLog.indexOf("Uncaught")>=0) + if (appLog.replace("Uncaught Storage Updated!", "").indexOf("Uncaught")>=0) erroredApps.push( { id : app.id, log : appLog } ); if (!blankImage) {