Fixed bug caused by not catching a IllegalStateException

I may replace all IllegalStateExceptions with DataExceptions soon so we can ensure they are always caught.
This commit is contained in:
CalDescent 2021-11-19 20:18:56 +00:00
parent 7f41c7ab0e
commit 1be8a059f4

View File

@ -65,7 +65,7 @@ public class ArbitraryDataResource {
} catch (MissingDataException e) {
return new ArbitraryResourceSummary(ArbitraryResourceStatus.DOWNLOADING);
} catch (IOException | DataException e) {
} catch (IOException | DataException | IllegalStateException e) {
// Ignore for now
}