diff --git a/debian/changelog b/debian/changelog index 393fe564..d7c79d8a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -hedera-web (1.407.28) stable; urgency=low +hedera-web (1.407.29) stable; urgency=low * Initial Release. diff --git a/package.json b/package.json index ae178e33..ff00f84a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hedera-web", - "version": "1.407.28", + "version": "1.407.29", "description": "Verdnatura web page", "license": "GPL-3.0", "repository": { diff --git a/rest/image/sync.php b/rest/image/sync.php index eeee48ee..607b7ef0 100644 --- a/rest/image/sync.php +++ b/rest/image/sync.php @@ -59,8 +59,11 @@ class Sync extends Vn\Lib\Method { ['collection' => $collection] ); + if ($res->num_rows == 0) continue; + echo "Deleting {$res->num_rows} from collection '$collection'.\n"; + while ($image = $res->fetch_object()) - if (!empty($image) && !in_array($image->name, ['.', '..'])) { + if (!empty($image->name) && !in_array($image->name, ['.', '..'])) { $deleteCount++; $this->recycle("$collection/full/{$image->name}.png"); @@ -78,6 +81,7 @@ class Sync extends Vn\Lib\Method { $db->query('COMMIT'); } catch(Exception $e) { $db->query('ROLLBACK'); + throw $e; } }