1
0
mirror of https://github.com/Qortal/qortal.git synced 2025-07-28 04:31:23 +00:00

Revert "Use response code 102 ("Processing") instead of 503 ("Service Unavailable") for the loading screen"

This reverts commit 8823f69256.
This commit is contained in:
CalDescent
2021-12-01 13:56:47 +00:00
parent a2cac003a4
commit 84b69fc58c

@@ -153,7 +153,7 @@ public class ArbitraryDataRenderer {
} catch (IOException e) { } catch (IOException e) {
LOGGER.info("Unable to show loading screen: {}", e.getMessage()); LOGGER.info("Unable to show loading screen: {}", e.getMessage());
} }
return ArbitraryDataRenderer.getResponse(response, 102, responseString); return ArbitraryDataRenderer.getResponse(response, 503, responseString);
} }
public static HttpServletResponse getResponse(HttpServletResponse response, int responseCode, String responseString) { public static HttpServletResponse getResponse(HttpServletResponse response, int responseCode, String responseString) {