Fxi a crash issue while using cloudreve as a third-party library, there is no database.
This commit is contained in:
parent
61e6d9b591
commit
c7b7978b8d
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue