diff --git a/src/dotnet/APIView/APIViewWeb/Controllers/PullRequestController.cs b/src/dotnet/APIView/APIViewWeb/Controllers/PullRequestController.cs index 825810f285c..936552bd64a 100644 --- a/src/dotnet/APIView/APIViewWeb/Controllers/PullRequestController.cs +++ b/src/dotnet/APIView/APIViewWeb/Controllers/PullRequestController.cs @@ -30,7 +30,7 @@ public class PullRequestController : Controller private readonly TelemetryClient _telemetryClient; private HashSet _allowedListBotAccounts = new HashSet(); - string[] VALID_EXTENSIONS = new string[] { ".whl", ".api.json", ".nupkg", "-sources.jar", ".gosource" }; + string[] VALID_EXTENSIONS = new string[] { ".whl", ".api.json", ".json", ".nupkg", "-sources.jar", ".gosource" }; public PullRequestController(ICodeFileManager codeFileManager, IPullRequestManager pullRequestManager, IAPIRevisionsManager apiRevisionsManager, IReviewManager reviewManager,