[feature/weebcentral] Added Weebcentral to connectors

This commit is contained in:
Alessandro Benetton 2024-12-14 16:18:15 +01:00
parent cf4c84a47f
commit dd988658c0
No known key found for this signature in database
GPG Key ID: ED63A304CE2C0303

View File

@ -39,6 +39,7 @@ public class MangaConnectorJsonConverter : JsonConverter
"ManhuaPlus" => this._connectors.First(c => c is ManhuaPlus),
"MangaHere" => this._connectors.First(c => c is MangaHere),
"AsuraToon" => this._connectors.First(c => c is AsuraToon),
"Weebcentral" => this._connectors.First(c => c is Weebcentral),
_ => throw new UnreachableException($"Could not find Connector with name {connectorName}")
};
}