Remove unwanted property interpolation

This commit is contained in:
Andrei Zavatski 2020-02-14 00:40:52 +03:00
parent 791bf6bc01
commit c68c347503
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ private class CountryName : OsuSpriteText
public CountryName(Country country)
{
Font = OsuFont.GetFont(size: 12, italics: true);
Text = $@"{country.FullName}";
Text = country.FullName ?? string.Empty;
}
[BackgroundDependencyLoader]