mirror of
https://github.com/go-gitea/gitea.git
synced 2025-01-30 16:14:42 +01:00
#1611 fix bool type in sqlite query
This commit is contained in:
parent
b75d0378cb
commit
9899ea71e8
@ -1231,7 +1231,7 @@ func SearchRepositoryByName(opt SearchOption) (repos []*Repository, err error) {
|
|||||||
sess.Where("owner_id=?", opt.Uid)
|
sess.Where("owner_id=?", opt.Uid)
|
||||||
}
|
}
|
||||||
if !opt.Private {
|
if !opt.Private {
|
||||||
sess.And("is_private=false")
|
sess.And("is_private=?", false)
|
||||||
}
|
}
|
||||||
sess.And("lower_name like ?", "%"+opt.Keyword+"%").Find(&repos)
|
sess.And("lower_name like ?", "%"+opt.Keyword+"%").Find(&repos)
|
||||||
return repos, err
|
return repos, err
|
||||||
|
Loading…
Reference in New Issue
Block a user