#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) | ||||
| 	} | ||||
| 	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 New Issue
	
	Block a user