1
0
mirror of https://github.com/C9Glax/tranga.git synced 2025-07-09 06:36:06 +02:00

[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

@ -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}")
};
}