Fixed small mistake on native ssl support

This commit is contained in:
Marcel Baumgartner 2024-03-30 00:21:33 +01:00
parent 44b2d07fdb
commit 3a74f3abcd

View file

@ -61,7 +61,8 @@ else
builder.WebHost.ConfigureMoonCoreHttp(
httpConfig.HttpPort,
httpConfig.EnableSsl,
httpConfig.HttpsPort
httpConfig.HttpsPort,
certificate
);
}