ArchiSteamFarm.MobileAuthenticator.CorrectDeviceID C# (CSharp) Method

CorrectDeviceID() private method

private CorrectDeviceID ( string deviceID ) : void
deviceID string
return void
		internal void CorrectDeviceID(string deviceID) {
			if (string.IsNullOrEmpty(deviceID)) {
				Bot.ArchiLogger.LogNullError(nameof(deviceID));
				return;
			}

			DeviceID = deviceID;
		}