1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

Improve open error for files from network

This commit is contained in:
disarray2077 2022-01-07 10:22:26 -03:00
parent 36311cab2d
commit 2fd78b36e7
5 changed files with 81 additions and 20 deletions

View file

@ -36,12 +36,12 @@ public:
#else
#endif
volatile bool mCancelling;
bool mFailed;
bool mFailed;
String mError;
uint32 mLastUpdateTick;
bool mShowTracking;
NetResult* mResult;
NetResult* mCancelOnSuccess;
NetResult* mResult;
NetResult* mCancelOnSuccess;
NetRequest()
{
@ -74,8 +74,9 @@ public:
String mURL;
String mOutPath;
bool mFailed;
NetRequest* mCurRequest;
bool mRemoved;
String mError;
NetRequest* mCurRequest;
bool mRemoved;
SyncEvent* mDoneEvent;
NetResult()