diff --git a/README.md b/README.md
index 90ad8ac..9f7b36d 100644
--- a/README.md
+++ b/README.md
@@ -30,10 +30,13 @@ A directory MyDocuments/CareLink/Settings contains a Settings File which is init
- Lastly is an area where you can enter your Carb Ratio by time.
## Updated
-04/02/2024
+04/03/2024
## What's New
- New in 4.0.1.0
+ New in 4.0.1.1
+ - Fix issue Session expires after 35 minutes #58
+
+ - New in 4.0.1.0
- Fix ExpireTokenFormat
- Add new Pump message
- Complete rewrite of PDF file handling
diff --git a/src/CareLink/CareLink.vbproj b/src/CareLink/CareLink.vbproj
index 9046f45..19ac331 100644
--- a/src/CareLink/CareLink.vbproj
+++ b/src/CareLink/CareLink.vbproj
@@ -21,9 +21,9 @@
Copyright (c) .NET Foundation and Contributors
https://github.com/paul1956/CareLink
git
- 4.0.1.0
- 4.0.1.0
- 4.0.1.0
+ 4.0.1.1
+ 4.0.1.1
+ 4.0.1.1
IconImage.png
https://github.com/paul1956/CareLink
diff --git a/src/CareLink/CareLinkCommunications/CareLinkClient.vb b/src/CareLink/CareLinkCommunications/CareLinkClient.vb
index 8a643ed..a69a373 100644
--- a/src/CareLink/CareLinkCommunications/CareLinkClient.vb
+++ b/src/CareLink/CareLinkCommunications/CareLinkClient.vb
@@ -169,7 +169,7 @@ Public Class CareLinkClient
Using consentResponse As HttpResponseMessage = DoConsent(_httpClient, doLoginResponse, _lastErrorMessage)
_lastResponseCode = consentResponse?.StatusCode
If Not (consentResponse?.IsSuccessStatusCode) Then
- _lastErrorMessage = consentResponse.ReasonPhrase
+ _lastErrorMessage = consentResponse.StatusCode.ToString
_lastResponseCode = consentResponse.StatusCode
Return False
End If