Catch parse errors when trying to read readme

This commit is contained in:
Jordan Eldredge 2020-12-29 19:58:04 -08:00
parent 5db69d6c2d
commit 90f69c4cc9

View file

@ -72,6 +72,10 @@ const selectedSkinEpic = (actions) =>
return of(Actions.loadedSkinZip(zip), {
type: "SELECTED_SKIN_README",
});
}),
catchError((e) => {
console.error(e);
return [];
})
);
})