forked from GNUsocial/gnu-social
Stricter exception check
This commit is contained in:
parent
733debd9b3
commit
b9d35659c8
@ -267,7 +267,7 @@ class OembedPlugin extends Plugin
|
|||||||
// and File_thumbnail tables respectively. If not, we're not going to do anything.
|
// and File_thumbnail tables respectively. If not, we're not going to do anything.
|
||||||
$file_oembed = File_oembed::getByFile($file);
|
$file_oembed = File_oembed::getByFile($file);
|
||||||
$thumbnail = File_thumbnail::byFile($file);
|
$thumbnail = File_thumbnail::byFile($file);
|
||||||
} catch (Exception $e) {
|
} catch (NoResultException $e) {
|
||||||
// Not Oembed data, or at least nothing we either can or want to use.
|
// Not Oembed data, or at least nothing we either can or want to use.
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user