]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Allow exception to be thrown if saveActivityObject fails
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 15 Jul 2014 12:12:39 +0000 (14:12 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 15 Jul 2014 12:12:39 +0000 (14:12 +0200)
plugins/Favorite/FavoritePlugin.php

index cc1ad0705a717cac14eca005e37d260308760023..062b2147cea4efc2f8b9dc69b062d3a6502ca89c 100644 (file)
@@ -183,14 +183,7 @@ class FavoritePlugin extends ActivityHandlerPlugin
         // We must have an objects[0] here because in isMyActivity we require the count to be == 1
         $actobj = $act->objects[0];
 
-        try {
-            $object = Fave::saveActivityObject($actobj, $stored);
-        } catch (ServerException $e) {
-            // Probably that the favored notice doesn't exist in our local database
-            // but may also be some missing profile or so, which we could catch in a
-            // more explicit catch-statement.
-            return null;
-        }
+        $object = Fave::saveActivityObject($actobj, $stored);
         return $object;
     }