From 847272a70d403178db6e3595aa162a3710be5bc8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jonas=20Br=C3=B6ms?= <cez81@users.noreply.github.com>
Date: Wed, 18 Oct 2017 20:50:41 +0200
Subject: [PATCH] Only update mirror last update after successful sync (#2730)

---
 models/repo_mirror.go | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/models/repo_mirror.go b/models/repo_mirror.go
index 6419c0ba1..77cd98faa 100644
--- a/models/repo_mirror.go
+++ b/models/repo_mirror.go
@@ -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
 }