[repo] get remote changes beffore pushing changes that weren't pushed due to a disconnect

This commit is contained in:
Hylke Bons 2011-04-15 00:56:02 +01:00
parent f2022223de
commit 695dbaddbe

View file

@ -334,8 +334,10 @@ namespace SparkleLib {
}
if (_HasUnsyncedChanges)
if (_HasUnsyncedChanges) {
CheckForRemoteChanges ();
Push ();
};
};
@ -846,9 +848,6 @@ namespace SparkleLib {
if (PushingFailed != null)
PushingFailed (this, args);
CheckForRemoteChanges ();
Push ();
} else {