Skip to content

Commit 0c76f71

Browse files
committed
fix shit
1 parent bc3e39d commit 0c76f71

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

OculusDB/Database/DBApplication.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,12 @@ public string categoryFormatted
8080
public List<string> genresFormatted {
8181
get
8282
{
83-
return genres != null ? genres.ConvertAll(x => OculusConverter.FormatOculusEnumString(x.ToString())) : "Unknown";
83+
return genres != null
84+
? genres.ConvertAll(x => OculusConverter.FormatOculusEnumString(x.ToString()))
85+
: new List<string>
86+
{
87+
"Unknown"
88+
};
8489
}
8590
}
8691

0 commit comments

Comments
 (0)