Change FirstOrDefault back to First

This commit is contained in:
HoLLy 2019-06-19 20:40:30 +02:00
parent 8d62ce8967
commit c1c19243cd
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ protected override ScoreInfo CreateModel(ArchiveReader archive)
if (archive == null)
return null;
using (var stream = archive.GetStream(archive.Filenames.FirstOrDefault(f => f.EndsWith(".osr"))))
using (var stream = archive.GetStream(archive.Filenames.First(f => f.EndsWith(".osr"))))
{
try
{