Reenable http

This commit is contained in:
Alex Hultman
2024-11-25 15:31:41 +01:00
parent 1ff6f64b0c
commit ea2947df3e

View File

@@ -943,11 +943,11 @@ void uWS_App(const FunctionCallbackInfo<Value> &args) {
} else {
//uWS_App_get<APP>(&uWS::TemplatedApp<false, uWS::CachingApp<false>>::get, args);
uWS_App_get<APP>(&uWS::TemplatedApp<false>::get, args);
}
} else if constexpr (std::is_same<APP, uWS::SSLApp>::value) {
//uWS_App_get<APP>(&uWS::TemplatedApp<true, uWS::CachingApp<true>>::get, args);
uWS_App_get<APP>(&uWS::TemplatedApp<true>::get, args);
}
}, args.Data()));