Compare commits
1 commit
master
...
work/fuf/4
Author | SHA1 | Date | |
---|---|---|---|
|
2e60c28345 |
1 changed files with 6 additions and 1 deletions
|
@ -67,7 +67,12 @@ void CompositeUploadJob::start()
|
||||||
m_running = true;
|
m_running = true;
|
||||||
|
|
||||||
// Give SharePlugin some time to add subjobs
|
// Give SharePlugin some time to add subjobs
|
||||||
QMetaObject::invokeMethod(this, "startNextSubJob", Qt::QueuedConnection);
|
QMetaObject::invokeMethod(
|
||||||
|
Daemon::instance()->getDevice(m_deviceId),
|
||||||
|
[this] {
|
||||||
|
startNextSubJob();
|
||||||
|
},
|
||||||
|
Qt::QueuedConnection);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool CompositeUploadJob::startListening()
|
bool CompositeUploadJob::startListening()
|
||||||
|
|
Loading…
Reference in a new issue