Skip to content

Commit

Permalink
chore: Remove TODO (resolved)
Browse files Browse the repository at this point in the history
  • Loading branch information
MH321Productions committed Feb 27, 2025
1 parent 5ccfa7e commit 9a24369
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private async Task<CachedApiResponse<T>> ExecuteCached<T>(HttpRequestMessage req
deserializedResponseContent!.Status = statusCode;
deserializedResponseContent.RawContent = await response.Content.ReadAsStringAsync();
deserializedResponseContent.ContentType = response.Content.Headers.ContentType?.MediaType;
deserializedResponseContent.ETag = response.Headers.ETag!.Tag; //TODO: Timo (Is it safe to assume that the ETag is non-null?)
deserializedResponseContent.ETag = response.Headers.ETag!.Tag;

return deserializedResponseContent;
}
Expand Down

0 comments on commit 9a24369

Please sign in to comment.