Browse Source

#2349 fix convert type

tags/v1.2.0-rc1
Unknwon 10 years ago
parent
commit
05853b6ae9
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      models/login.go

+ 3
- 3
models/login.go View File

@@ -109,9 +109,9 @@ type LoginSource struct {
// and handles possible irregular cases.
func Cell2Int64(val xorm.Cell) int64 {
switch (*val).(type) {
case []int8:
log.Trace("Cell2Int64 ([]int8): %v", *val)
return int64((*val).([]int8)[0])
case []uint8:
log.Trace("Cell2Int64 ([]uint8): %v", *val)
return com.StrTo(string((*val).([]uint8))).MustInt64()
}
return (*val).(int64)
}


Loading…
Cancel
Save