Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
arttuka committed Sep 4, 2017
2 parents 7b920e4 + 9d56a70 commit 5ce1ea9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mtg-pairings-win/MtgPairings/MtgPairings.sln
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ Global
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{86CFDBF2-7695-400F-9812-4654B89A5541}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{86CFDBF2-7695-400F-9812-4654B89A5541}.Debug|Any CPU.Build.0 = Debug|Any CPU
{86CFDBF2-7695-400F-9812-4654B89A5541}.Release|Any CPU.ActiveCfg = Debug|Any CPU
{86CFDBF2-7695-400F-9812-4654B89A5541}.Release|Any CPU.Build.0 = Debug|Any CPU
{86CFDBF2-7695-400F-9812-4654B89A5541}.Release|Any CPU.ActiveCfg = Release|Any CPU
{86CFDBF2-7695-400F-9812-4654B89A5541}.Release|Any CPU.Build.0 = Release|Any CPU
{F313F170-7294-4D69-9713-117A5B4129D4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F313F170-7294-4D69-9713-117A5B4129D4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F313F170-7294-4D69-9713-117A5B4129D4}.Release|Any CPU.ActiveCfg = Debug|Any CPU
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public void CheckTournaments()
}
if (!oldTournament.Equals(newTournament) || uploadAll)
{
if (!oldTournament.Teams.SequenceEqual(newTournament.Teams))
if (!oldTournament.Teams.SequenceEqual(newTournament.Teams) || !newTournament.Teams.IsEmpty && uploadAll)
{
UploadEvent e = new UploadEvent(() => _uploader.UploadTeams(newTournament.SanctionNumber, newTournament.Teams),
t.AutoUpload, newTournament, UploadEvent.Type.Teams, 0);
Expand Down

0 comments on commit 5ce1ea9

Please sign in to comment.