1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:57:35 +00:00

CNetworkJob: Automatically delete finished jobs after on_finish.

Also, pretty-print any failure messages.
This commit is contained in:
Andreas Kling 2019-06-22 22:46:05 +02:00
parent 639478391b
commit af75ccee65
2 changed files with 19 additions and 1 deletions

View file

@ -35,3 +35,5 @@ private:
RefPtr<CNetworkResponse> m_response;
Error m_error { Error::None };
};
const char* to_string(CNetworkJob::Error);