mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-02 14:57:37 +03:00
Corrected Mirror.NextUpdate not set (#1388)
This commit is contained in:
@ -61,7 +61,7 @@ func (m *Mirror) AfterSet(colName string, _ xorm.Cell) {
|
|||||||
}
|
}
|
||||||
case "updated_unix":
|
case "updated_unix":
|
||||||
m.Updated = time.Unix(m.UpdatedUnix, 0).Local()
|
m.Updated = time.Unix(m.UpdatedUnix, 0).Local()
|
||||||
case "next_updated_unix":
|
case "next_update_unix":
|
||||||
m.NextUpdate = time.Unix(m.NextUpdateUnix, 0).Local()
|
m.NextUpdate = time.Unix(m.NextUpdateUnix, 0).Local()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user