Use existing localised error message

This commit is contained in:
Dean Herbert
2022-08-03 20:15:42 +09:00
parent 7354f9e6ba
commit d3954fc583
2 changed files with 4 additions and 3 deletions

View File

@ -112,7 +112,7 @@ namespace osu.Game.Database
if (error is WebException webException && webException.Message == @"TooManyRequests")
{
notification.Close();
PostNotification?.Invoke(new TooManyDownloadsNotification(importer.HumanisedModelName));
PostNotification?.Invoke(new TooManyDownloadsNotification());
}
else
Logger.Error(error, $"{importer.HumanisedModelName.Titleize()} download failed!");