mirror of https://github.com/espruino/BangleApps
Don't treat "Uncaught Storage Updated!" as error
parent
b580fa2f84
commit
5f4db2e78c
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue