From: Evan Prodromou Date: Sun, 10 Jan 2010 21:25:16 +0000 (-0800) Subject: check before saving a thumbnail X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2e42d3336af659ef76b2a9ade9cec099ba9ff521;p=quix0rs-gnu-social.git check before saving a thumbnail --- diff --git a/classes/File_oembed.php b/classes/File_oembed.php index e41ccfd097..11f160718e 100644 --- a/classes/File_oembed.php +++ b/classes/File_oembed.php @@ -115,7 +115,13 @@ class File_oembed extends Memcached_DataObject } $file_oembed->insert(); if (!empty($data->thumbnail_url)) { - File_thumbnail::saveNew($data, $file_id); + $ft = File_thumbnail::staticGet('file_id', $file_id); + if (!empty($ft)) { + common_log(LOG_WARNING, "Strangely, a File_thumbnail object exists for new file $file_id", + __FILE__); + } else { + File_thumbnail::saveNew($data, $file_id); + } } } }