From 4e5c4a462bc8993a91433029b2aef72c7f29dc80 Mon Sep 17 00:00:00 2001 From: John Preston Date: Sat, 15 Apr 2017 20:32:14 +0300 Subject: [PATCH] Fix crash in videoplayer audio stream loader. Regression was introduced in 835b1801bc. --- Telegram/SourceFiles/media/media_audio_loaders.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Telegram/SourceFiles/media/media_audio_loaders.cpp b/Telegram/SourceFiles/media/media_audio_loaders.cpp index 9fba602ae..18266336f 100644 --- a/Telegram/SourceFiles/media/media_audio_loaders.cpp +++ b/Telegram/SourceFiles/media/media_audio_loaders.cpp @@ -29,6 +29,7 @@ namespace Player { Loaders::Loaders(QThread *thread) : _fromVideoNotify([this] { videoSoundAdded(); }) { moveToThread(thread); + _fromVideoNotify.moveToThread(thread); connect(thread, SIGNAL(started()), this, SLOT(onInit())); connect(thread, SIGNAL(finished()), this, SLOT(deleteLater())); }