-
Notifications
You must be signed in to change notification settings - Fork 0
Potential fix for code scanning alert no. 4: Log entries created from user input #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -6,6 +6,7 @@ | |||||
| using OpenAI.Responses; | ||||||
| using System.Runtime.CompilerServices; | ||||||
| using WebApp.Api.Models; | ||||||
| using System.Linq; | ||||||
|
|
||||||
| namespace WebApp.Api.Services; | ||||||
|
|
||||||
|
|
@@ -376,7 +377,10 @@ private MessageResponseItem BuildUserMessage(string message, List<string>? image | |||||
| var validationErrors = ValidateImageDataUris(imageDataUris); | ||||||
| if (validationErrors.Count > 0) | ||||||
| { | ||||||
| _logger.LogWarning("Image attachment validation failed: {Errors}", string.Join("; ", validationErrors)); | ||||||
| _logger.LogWarning( | ||||||
| "Image attachment validation failed: {Errors}", | ||||||
| string.Join("; ", validationErrors.Select(e => e.Replace("\r", "").Replace("\n", ""))) | ||||||
| ); | ||||||
| throw new ArgumentException($"Invalid image attachments: {string.Join(", ", validationErrors)}"); | ||||||
|
||||||
| throw new ArgumentException($"Invalid image attachments: {string.Join(", ", validationErrors)}"); | |
| throw new ArgumentException($"Invalid image attachments: {string.Join(", ", validationErrors.Select(e => e.Replace("\r", "").Replace("\n", "")))}"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
using System.Linq;directive is redundant because the project has<ImplicitUsings>enable</ImplicitUsings>in the csproj file (line 6), which automatically includes System.Linq. While harmless, it's unnecessary.