mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-23 04:36:50 +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:
@@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user