1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-11 04:40:39 +00:00

mall fixes

This commit is contained in:
eyalpost
2017-04-24 02:35:04 +03:00
parent 08ea9b3339
commit 864693d2f8
2 changed files with 2 additions and 2 deletions

2
cache/conv.go vendored
View File

@ -28,7 +28,7 @@ func GetString(v interface{}) string {
return string(result)
default:
if v != nil {
return fmt.Sprintf("%v", result)
return fmt.Sprint(result)
}
}
return ""