Skip to content

Commit

Permalink
Update tracer/src/Datadog.Trace/Telemetry/Collectors/DependencyTeleme…
Browse files Browse the repository at this point in the history
…tryCollector.cs
  • Loading branch information
andrewlock authored Nov 15, 2024
1 parent 42843f5 commit 0b151c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private static bool IsZeroVersionAssemblyPattern(string assemblyName)
&& IsBase32Char(assemblyName[5])
&& IsBase32Char(assemblyName[6])
&& IsBase32Char(assemblyName[7]))
|| (assemblyName.Length == 32 && IsHexString(assemblyName, 0));
|| (assemblyName.Length >= 32 && IsHexString(assemblyName, 0));
}

private static bool IsBase32Char(char c)
Expand Down

0 comments on commit 0b151c6

Please sign in to comment.