]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
don't ignore errors on inbox fixup; it messes up replication
authorEvan Prodromou <evan@prodromou.name>
Fri, 14 Nov 2008 06:51:45 +0000 (01:51 -0500)
committerEvan Prodromou <evan@prodromou.name>
Fri, 14 Nov 2008 06:51:45 +0000 (01:51 -0500)
darcs-hash:20081114065145-84dde-869571e84951470ab40f5b5191d099d23e68b27b.gz

scripts/fixup_inboxes.php

index ce8196dcdac8e868ab2760f78e6cf881a13de8a5..79cca5c7cd58fc62a009b898433c4b202275ec05 100755 (executable)
@@ -51,7 +51,13 @@ while ($user->fetch()) {
     common_log(LOG_INFO, 'Updating inbox for user ' . $user->id);
        $user->query('BEGIN');
        $inbox = new Notice_inbox();
-       $result = $inbox->query('INSERT LOW_PRIORITY IGNORE INTO notice_inbox (user_id, notice_id, created) ' .
+       $inbox->user_id = $user->id;
+       $result = $inbox->delete();
+       if (is_null($result) || $result === false) {
+               common_log_db_error($inbox, 'DELETE', __FILE__);
+               continue;
+       }
+       $result = $inbox->query('INSERT LOW_PRIORITY INTO notice_inbox (user_id, notice_id, created) ' .
                                                        'SELECT ' . $user->id . ', notice.id, notice.created ' .
                                                        'FROM subscription JOIN notice ON subscription.subscribed = notice.profile_id ' .
                                                        'WHERE subscription.subscriber = ' . $user->id . ' ' .