status .tolower

This commit is contained in:
glax 2023-06-01 14:58:58 +02:00
parent 8805c53cb8
commit c2915468a5

View File

@ -95,9 +95,9 @@ public readonly struct Publication
{ {
this.name = name; this.name = name;
this.year = year; this.year = year;
if(status == "ongoing" || status == "hiatus") if(status.ToLower() == "ongoing" || status.ToLower() == "hiatus")
this.status = "Continuing"; this.status = "Continuing";
else if (status == "completed" || status == "cancelled") else if (status.ToLower() == "completed" || status.ToLower() == "cancelled")
this.status = "Ended"; this.status = "Ended";
else else
this.status = status; this.status = status;