]> source.dussan.org Git - gitea.git/commitdiff
Only update mirror last update after successful sync (#2730)
authorJonas Bröms <cez81@users.noreply.github.com>
Wed, 18 Oct 2017 18:50:41 +0000 (20:50 +0200)
committerLauris BH <lauris@nix.lv>
Wed, 18 Oct 2017 18:50:41 +0000 (21:50 +0300)
models/repo_mirror.go

index 6419c0ba1704b1643e9a75f6d17a59984b5209e1..77cd98faa81c190f175a81f2a159b1cbbd70ee74 100644 (file)
@@ -50,7 +50,7 @@ func (m *Mirror) BeforeInsert() {
 // BeforeUpdate is invoked from XORM before updating this object.
 func (m *Mirror) BeforeUpdate() {
        if m != nil {
-               m.UpdatedUnix = time.Now().Unix()
+               m.UpdatedUnix = m.Updated.Unix()
                m.NextUpdateUnix = m.NextUpdate.Unix()
        }
 }
@@ -179,6 +179,7 @@ func (m *Mirror) runSync() bool {
                }
        }
 
+       m.Updated = time.Now()
        return true
 }