Download plugin have progress status

This commit is contained in:
2024-12-25 15:05:20 +02:00
parent a754b0e5a9
commit 49fe637455
10 changed files with 146 additions and 57 deletions

View File

@@ -31,8 +31,8 @@ internal class SocketResponse
return new SocketResponse(data, true, true, false);
}
internal static SocketResponse Fail()
internal static SocketResponse Fail(bool closeConnection)
{
return new SocketResponse(new byte[0], true, false, false);
return new SocketResponse(new byte[0], true, false, closeConnection);
}
}