-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Update ResourceManager.cs to better handle resources that don't specify a version #14992
Conversation
@dotnet-policy-service agree company="AdvantageCS" |
if (resource == null | ||
|| (resourceDefinition.Version != null && new Version(resource.Version) < version)) | ||
// Use the highest version of all matches. Resources that don't specify a version have the lowest priority. | ||
if (resource == null || resource.Version == null || new Version(resource.Version) < version) |
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.
Please simplify code to this
resource?.Version is null
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.
@MikeAlhayek you could use the suggest feature in GitHub instead of writing the code yourself, it's quite helpful
src/OrchardCore/OrchardCore.ResourceManagement/ResourceManager.cs
Outdated
Show resolved
Hide resolved
Co-authored-by: Hisham Bin Ateya <[email protected]>
@mroskamp creating a unit test will be plus |
…tion and ensure resource definitions that don't specify a version have the lowest priority.
@MikeAlhayek any comment or we can merge |
Thanks for your contribution @mroskamp |
Update ResourceManager.cs to better handle resources that don't specify a version
fixes #14991