forked from Qortal/qortal
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:
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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user