Skip to content
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

Merged
merged 3 commits into from
Jan 5, 2024

Conversation

mroskamp
Copy link
Contributor

@mroskamp mroskamp commented Jan 5, 2024

Update ResourceManager.cs to better handle resources that don't specify a version
fixes #14991

@mroskamp
Copy link
Contributor Author

mroskamp commented Jan 5, 2024

@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)
Copy link
Member

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

Copy link
Member

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

@hishamco
Copy link
Member

hishamco commented Jan 5, 2024

@mroskamp creating a unit test will be plus

…tion and ensure resource definitions that don't specify a version have the lowest priority.
@hishamco
Copy link
Member

hishamco commented Jan 5, 2024

@MikeAlhayek any comment or we can merge

@MikeAlhayek MikeAlhayek merged commit 1269f09 into OrchardCMS:main Jan 5, 2024
3 checks passed
@hishamco
Copy link
Member

hishamco commented Jan 5, 2024

Thanks for your contribution @mroskamp

giannik pushed a commit to giannik/OrchardCore that referenced this pull request Jan 7, 2024
urbanit pushed a commit to urbanit/OrchardCore that referenced this pull request Mar 18, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants