1
0
Fork 0
forked from forgejo/forgejo

Fix typos

This commit is contained in:
Bwko 2016-11-21 20:08:21 +01:00
parent b2cce12980
commit 2a449bd4b1
3 changed files with 8 additions and 8 deletions

View file

@ -650,7 +650,7 @@ func newIssue(e *xorm.Session, opts NewIssueOptions) (err error) {
}
if len(opts.LableIDs) > 0 {
// During the session, SQLite3 dirver cannot handle retrieve objects after update something.
// During the session, SQLite3 driver cannot handle retrieve objects after update something.
// So we have to get all needed labels first.
labels := make([]*Label, 0, len(opts.LableIDs))
if err = e.In("id", opts.LableIDs).Find(&labels); err != nil {