Add Connector Mangasee #34

This commit is contained in:
2023-06-05 19:46:22 +02:00
parent 46f06c2685
commit 2c1105527a
5 changed files with 226 additions and 3 deletions

View File

@ -109,7 +109,7 @@ public readonly struct Publication
this.year = year;
if(status.ToLower() == "ongoing" || status.ToLower() == "hiatus")
this.status = "Continuing";
else if (status.ToLower() == "completed" || status.ToLower() == "cancelled")
else if (status.ToLower() == "completed" || status.ToLower() == "cancelled" || status.ToLower() == "discontinued")
this.status = "Ended";
else
this.status = status;