Commit 7726df9e authored by Sebastian Kummer's avatar Sebastian Kummer

ZP-871 Invalidate the pingable flags where they are set.

Released under the Affero GNU General Public License (AGPL) version 3.
parent 7e80038d
...@@ -86,7 +86,10 @@ class SyncCollections implements Iterator { ...@@ -86,7 +86,10 @@ class SyncCollections implements Iterator {
$sc = new SyncCollections(); $sc = new SyncCollections();
$sc->LoadAllCollections(); $sc->LoadAllCollections();
foreach ($sc as $folderid => $spa) { foreach ($sc as $folderid => $spa) {
$sc->invalidateFolderStat($spa); if ($spa->GetPingableFlag() == true) {
$spa->DelPingableFlag();
$sc->SaveCollection($spa);
}
} }
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment