Skip to content
Snippets Groups Projects
Commit 6986f7e1 authored by Chris Shantz's avatar Chris Shantz
Browse files

Merge branch '1.0.x' into prod/1.0.x

parents 6f9047b7 a7c5a3c9
No related branches found
No related tags found
No related merge requests found
......@@ -104,6 +104,11 @@ class UWQueueManager {
* Process queued items.
*/
public function processQueue(): void {
// If there is no vid set. This happens when max depth is set to zero.
if ($this->vid === NULL) {
return;
}
if ($this->queue->numberOfItems() === 0) {
$this->createQueue();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment