#1611 fix bool type in sqlite query
This commit is contained in:
parent
b75d0378cb
commit
9899ea71e8
1 changed files with 1 additions and 1 deletions
|
@ -1231,7 +1231,7 @@ func SearchRepositoryByName(opt SearchOption) (repos []*Repository, err error) {
|
|||
sess.Where("owner_id=?", opt.Uid)
|
||||
}
|
||||
if !opt.Private {
|
||||
sess.And("is_private=false")
|
||||
sess.And("is_private=?", false)
|
||||
}
|
||||
sess.And("lower_name like ?", "%"+opt.Keyword+"%").Find(&repos)
|
||||
return repos, err
|
||||
|
|
Loading…
Reference in a new issue