From: Evan Prodromou Date: Sun, 10 Jan 2010 21:18:53 +0000 (-0800) Subject: check before inserting File_oembed and File_thumbnail X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f463329b9a5575856757ae8879e4cc11400d50a2;p=quix0rs-gnu-social.git check before inserting File_oembed and File_thumbnail --- diff --git a/classes/File.php b/classes/File.php index e04a9d5255..03d9ca6f09 100644 --- a/classes/File.php +++ b/classes/File.php @@ -80,7 +80,14 @@ class File extends Memcached_DataObject if (isset($redir_data['type']) && (('text/html' === substr($redir_data['type'], 0, 9) || 'application/xhtml+xml' === substr($redir_data['type'], 0, 21))) && ($oembed_data = File_oembed::_getOembed($given_url))) { + + $fo = File_oembed::staticGet('file_id', $file_id); + + if (empty($fo)) { File_oembed::saveNew($oembed_data, $file_id); + } else { + common_log(LOG_WARNING, "Strangely, a File_oembed object exists for new file $file_id", __FILE__); + } } return $x; }