]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Forgot to catch no-parent-exception
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 30 Oct 2013 13:56:27 +0000 (14:56 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 30 Oct 2013 13:56:27 +0000 (14:56 +0100)
Unfortunately not a specific Exception right now, but we're getting to that.

lib/util.php

index 6d752936dbe9cfd51e0d98b28a6525dbdc786ea4..ee108df416d116f3cc92bee5fa74c3f8c9c6ca05 100644 (file)
@@ -705,6 +705,8 @@ function common_find_mentions($text, $notice)
                 common_log(LOG_WARNING, sprintf('Notice %d author profile id %d does not exist', $origNotice->id, $origNotice->profile_id));
             } catch (ServerException $e) {
                 common_log(LOG_WARNING, __METHOD__ . ' got exception: ' . $e->getMessage());
+            } catch (Exception $e) {
+                // Probably just no parent. Should get a specific NoParentException
             }
         }