We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9ace8e5 + 8ad2f34 commit 7a7578cCopy full SHA for 7a7578c
lib/private/BackgroundJob/JobList.php
@@ -307,7 +307,8 @@ private function buildJob(array $row): ?IJob {
307
$class = $row['class'];
308
$job = new $class();
309
} else {
310
- // job from disabled app or old version of an app, no need to do anything
+ // Remove job from disabled app or old version of an app
311
+ $this->removeById($row['id']);
312
return null;
313
}
314
0 commit comments