mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-28 20:39:40 -08:00
parent
2ea6198a13
commit
e41304ae44
|
@ -116,17 +116,20 @@ func (m Map) GetInt(property Property, defaultValue int) int {
|
||||||
return defaultValue
|
return defaultValue
|
||||||
}
|
}
|
||||||
|
|
||||||
if intValue, ok := val.(int); ok {
|
switch v := val.(type) {
|
||||||
return intValue
|
case int:
|
||||||
}
|
return v
|
||||||
|
case int64:
|
||||||
// config parser parses a float
|
return int(v)
|
||||||
intValue, ok := val.(float64)
|
case float64:
|
||||||
if !ok {
|
intValue, ok := val.(float64)
|
||||||
|
if !ok {
|
||||||
|
return defaultValue
|
||||||
|
}
|
||||||
|
return int(intValue)
|
||||||
|
default:
|
||||||
return defaultValue
|
return defaultValue
|
||||||
}
|
}
|
||||||
|
|
||||||
return int(intValue)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m Map) GetKeyValueMap(property Property, defaultValue map[string]string) map[string]string {
|
func (m Map) GetKeyValueMap(property Property, defaultValue map[string]string) map[string]string {
|
||||||
|
|
Loading…
Reference in a new issue