We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc3e39d commit 0c76f71Copy full SHA for 0c76f71
1 file changed
OculusDB/Database/DBApplication.cs
@@ -80,7 +80,12 @@ public string categoryFormatted
80
public List<string> genresFormatted {
81
get
82
{
83
- return genres != null ? genres.ConvertAll(x => OculusConverter.FormatOculusEnumString(x.ToString())) : "Unknown";
+ return genres != null
84
+ ? genres.ConvertAll(x => OculusConverter.FormatOculusEnumString(x.ToString()))
85
+ : new List<string>
86
+ {
87
+ "Unknown"
88
+ };
89
}
90
91
0 commit comments