Browse Source

Fixed Blocking setter

Brian Fiete 5 years ago
parent
commit
eedbd9b8f5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      BeefLibs/corlib/src/Net/Socket.bf

+ 1 - 1
BeefLibs/corlib/src/Net/Socket.bf

@@ -160,7 +160,7 @@ namespace System.Net
 			get => mIsBlocking;
 			set
 			{
-				mIsBlocking = true;
+				mIsBlocking = value;
 				if (mHandle != INVALID_SOCKET)
 					SetBlocking(mIsBlocking);
 			}