Skip to content

Commit 911f233

Browse files
committed
Update X-Blink-Time-Zone header to use UTC
The code change updates the `X-Blink-Time-Zone` HTTP header value from "America/Los_Angeles" to "UTC". This means that the application will now use Coordinated Universal Time (UTC) instead of the Pacific Time Zone (America/Los_Angeles) for the `X-Blink-Time-Zone` header in its HTTP requests.
1 parent fd06854 commit 911f233

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Blink/BlinkClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ private HttpClient CreateHttpClient(string baseUrl, string? token = "")
108108
_http.DefaultRequestHeaders.TryAddWithoutValidation("User-Agent", userAgent);
109109
_http.DefaultRequestHeaders.TryAddWithoutValidation("APP-BUILD", appBuild);
110110
_http.DefaultRequestHeaders.TryAddWithoutValidation("LOCALE", "en_US");
111-
_http.DefaultRequestHeaders.TryAddWithoutValidation("X-Blink-Time-Zone", "America/Los_Angeles");
111+
_http.DefaultRequestHeaders.TryAddWithoutValidation("X-Blink-Time-Zone", "UTC");
112112
if (!string.IsNullOrWhiteSpace(token))
113113
{
114114
_http.DefaultRequestHeaders.TryAddWithoutValidation("TOKEN-AUTH", token);

0 commit comments

Comments
 (0)