]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
More explicit catch
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 4 Jan 2016 00:53:33 +0000 (01:53 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 4 Jan 2016 00:53:33 +0000 (01:53 +0100)
lib/activityutils.php

index ef2e23224374b6a9ddd9629ef366e7f19ed0bdb7..da543b2069d5c9783f06bdae8e28c75ca4df6d17 100644 (file)
@@ -397,8 +397,8 @@ class ActivityUtils
                 // the exception thrown will cancel before reaching $object
                 $object = call_user_func(array($object, 'fromUri'), $uri);
                 break;
-            } catch (Exception $e) {
-                common_debug('Could not find local activity object from uri: '.$uri);
+            } catch (UnknownUriException $e) {
+                common_debug('Could not find local activity object from uri: '.$e->object_uri);
             }
         }
         if (!empty($object)) {