aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-10-01 07:14:37 +0000
committerMario <mario@mariovavti.com>2021-10-01 07:14:37 +0000
commite5e3c268a2ef7bc0450b1ff20c7e0562163f0c92 (patch)
treef707e705b26c37abe2ca085f4fd5a648ff03c038
parent22dff49673d7732b846107c888259170332746cb (diff)
parent591905c2829631564d39e6f9a59a51047adc7ead (diff)
downloadvolse-hubzilla-e5e3c268a2ef7bc0450b1ff20c7e0562163f0c92.tar.gz
volse-hubzilla-e5e3c268a2ef7bc0450b1ff20c7e0562163f0c92.tar.bz2
volse-hubzilla-e5e3c268a2ef7bc0450b1ff20c7e0562163f0c92.zip
Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
-rwxr-xr-xutil/storageconv19
1 files changed, 10 insertions, 9 deletions
diff --git a/util/storageconv b/util/storageconv
index 52bb77fbb..676425038 100755
--- a/util/storageconv
+++ b/util/storageconv
@@ -77,17 +77,18 @@ if($argc == 2) {
}
if(! file_put_contents($filename, dbunescbin($xx['content']))) {
+ @unlink($filename);
echo PHP_EOL . 'Failed to save file ' . $filename . PHP_EOL;
- continue;
}
-
- $z = q("UPDATE photo SET content = '%s', os_storage = 1 WHERE id = %d",
- dbescbin($filename),
- intval($xx['id'])
- );
- if(! $z) {
- @unlink($filename);
- echo PHP_EOL . 'Failed to update metadata for saved file ' . $filename . PHP_EOL;
+ else {
+ $z = q("UPDATE photo SET content = '%s', os_storage = 1 WHERE id = %d",
+ dbescbin($filename),
+ intval($xx['id'])
+ );
+ if(! $z) {
+ @unlink($filename);
+ echo PHP_EOL . 'Failed to update metadata for saved file ' . $filename . PHP_EOL;
+ }
}
$cur_id = $xx['id'];