diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-14 17:39:33 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-14 17:39:33 -0800 |
commit | 8e534918672c2ccf3614623b8bd368d18318f453 (patch) | |
tree | 10af0a71d36279b4349d3d8afc3ba3be3f25b48b /Zotlabs/Storage/Directory.php | |
parent | 3c3c0ed34269cecdbda1288eab5b63c664a8859c (diff) | |
download | volse-hubzilla-8e534918672c2ccf3614623b8bd368d18318f453.tar.gz volse-hubzilla-8e534918672c2ccf3614623b8bd368d18318f453.tar.bz2 volse-hubzilla-8e534918672c2ccf3614623b8bd368d18318f453.zip |
sort out a few more large image upload issues
Diffstat (limited to 'Zotlabs/Storage/Directory.php')
-rw-r--r-- | Zotlabs/Storage/Directory.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Zotlabs/Storage/Directory.php b/Zotlabs/Storage/Directory.php index 0ed7a3c68..27df3569f 100644 --- a/Zotlabs/Storage/Directory.php +++ b/Zotlabs/Storage/Directory.php @@ -299,6 +299,17 @@ class Directory extends DAV\Node implements DAV\ICollection, DAV\IQuota { $is_photo = 1; } + // If we know it's a photo, over-ride the type in case the source system could not determine what it was + + if($is_photo) { + q("update attach set filetype = '%s' where hash = '%s' and uid = %d", + dbesc($gis['mime']), + dbesc($hash), + intval($c[0]['channel_id']) + ); + } + + // updates entry with filesize and timestamp $d = q("UPDATE attach SET filesize = '%s', os_path = '%s', display_path = '%s', is_photo = %d, edited = '%s' WHERE hash = '%s' AND uid = %d", dbesc($size), |