Fixes null culture (#8723)

Fixes null culture bug and prevents to query the database if the requested culture is null or empty
This commit is contained in:
Hermes Sbicego 2023-09-29 08:42:13 +02:00 committed by GitHub
parent ba0daf3cb0
commit a4be7c68cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
@ -87,6 +87,9 @@ namespace Orchard.Localization.Services {
});
}
public CultureRecord GetCultureByName(string cultureName) {
if (string.IsNullOrWhiteSpace(cultureName)) {
return null;
}
var cultures = GetAllCulturesByName();
CultureRecord result;
cultures.TryGetValue(cultureName, out result);