1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-05-28 04:16:58 +00:00

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

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