]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Inverse logic error in OembedPlugin
authorMikael Nordfeldth <mmn@hethane.se>
Fri, 3 Apr 2015 18:59:56 +0000 (20:59 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Fri, 3 Apr 2015 18:59:56 +0000 (20:59 +0200)
plugins/Oembed/OembedPlugin.php

index 44e5d1a72bad57e2a46e38a2a3f7e72d741861d3..84886a2bd38306018fd3724a78173121768ab4f3 100644 (file)
@@ -159,7 +159,7 @@ class OembedPlugin extends Plugin
         // Never treat generic HTML links as an enclosure type!
         // But if we have oEmbed info, we'll consider it golden.
         $oembed = File_oembed::getKV('file_id', $file->id);
-        if (!$oembed instanceof File_oembed || !in_array($oembed->type, array('photo', 'video'))) {
+        if (!$oembed instanceof File_oembed && !in_array($oembed->type, array('photo', 'video'))) {
             return true;
         }