Fxi a crash issue while using cloudreve as a third-party library, there is no database.

This commit is contained in:
dengsheng.chen 2020-12-24 18:00:36 +08:00
parent 61e6d9b591
commit c7b7978b8d

View file

@ -78,7 +78,12 @@ func GetSiteURL() *url.URL {
}
// GetIntSetting 获取整形设置值如果转换失败则返回默认值defaultVal
func GetIntSetting(key string, defaultVal int) int {
func GetIntSetting(key string, defaultVal int) (ret int) {
defer func() {
if v := recover(); v != nil {
ret = defaultVal
}
}()
res, err := strconv.Atoi(GetSettingByName(key))
if err != nil {
return defaultVal