新增默认IP地理库

pull/82/head^2
awenes 8 months ago
parent c2bad81246
commit 9d2cd04d4e

@ -19,6 +19,7 @@ package cn.topiam.employee.console.converter.setting;
import java.util.Objects;
import org.apache.commons.lang3.StringUtils;
import org.mapstruct.Mapper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
@ -115,7 +116,7 @@ public interface GeoLocationSettingConverter {
*/
default GeoIpProviderResult entityToGeoLocationProviderConfig(SettingEntity entity) {
//没有数据,默认未启用
if (Objects.isNull(entity)) {
if (Objects.isNull(entity) || StringUtils.isBlank(entity.getValue())) {
return null;
}
try {

Loading…
Cancel
Save