Fixed regression on the transcoder

This commit is contained in:
emeric
2018-04-16 22:25:12 +02:00
parent 7721f6e874
commit 7b6f446543
+1 -1
View File
@@ -60,7 +60,7 @@ TranscodeResource::handleRequest(const Wt::Http::Request& request,
if (continuation)
{
LMS_LOG(UI, DEBUG) << "Continuation! " << continuation ;
transcoder = boost::any_cast<std::shared_ptr<Av::Transcoder>>(continuation->data());
transcoder = Wt::cpp17::any_cast<std::shared_ptr<Av::Transcoder>>(continuation->data());
}
else
{