summaryrefslogtreecommitdiffstats
path: root/backgroundjob
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-05-10 13:30:00 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-05-10 13:30:00 +0200
commit347000cc2d5597c1971942ebdbe97461c9fa5802 (patch)
tree8a2f6dc166ad871c646b4cf8bf13f4a9fcd02e55 /backgroundjob
parentc487bfe23312a5b266d8eb21a3825ab791a1c3e8 (diff)
use a deleted flag for deleted feeds to handle undo
Diffstat (limited to 'backgroundjob')
-rw-r--r--backgroundjob/task.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/backgroundjob/task.php b/backgroundjob/task.php
index 820d36cc7..9a21a662f 100644
--- a/backgroundjob/task.php
+++ b/backgroundjob/task.php
@@ -34,7 +34,9 @@ class Task {
static public function run() {
$container = new DIContainer();
+ $container['FolderBusinessLayer']->purgeDeleted();
$container['FeedBusinessLayer']->updateAll();
+ $container['FeedBusinessLayer']->purgeDeleted();
$container['ItemBusinessLayer']->autoPurgeOld();
}