Ignore parse errors rather than dying

This commit is contained in:
Dean Herbert 2019-06-18 15:18:06 +09:00
parent 3db6913a9c
commit 1a92263652
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,6 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
@ -116,7 +115,8 @@ private void readBracket()
var src = ladder.Matches.FirstOrDefault(p => p.ID == pair.SourceID);
var dest = ladder.Matches.FirstOrDefault(p => p.ID == pair.TargetID);
if (src == null) throw new InvalidOperationException();
if (src == null)
continue;
if (dest != null)
{