1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-26 19:11:18 +08:00

Merge pull request #14955 from peppy/fix-import-notifications

Fix import notifications not showing correct text
This commit is contained in:
Dan Balasescu
2021-10-05 17:55:04 +09:00
committed by GitHub
Unverified
+1 -1
View File
@@ -197,7 +197,7 @@ namespace osu.Game.Database
else
{
notification.CompletionText = imported.Count == 1
? $"Imported {imported.First()}!"
? $"Imported {imported.First().Value}!"
: $"Imported {imported.Count} {HumanisedModelName}s!";
if (imported.Count > 0 && PostImport != null)