]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Renew 1 day *before* the end, not 1 day *after*
authorStephen Paul Weber <singpolyma@singpolyma.net>
Wed, 21 Oct 2015 01:49:26 +0000 (01:49 +0000)
committerStephen Paul Weber <singpolyma@singpolyma.net>
Wed, 21 Oct 2015 01:49:26 +0000 (01:49 +0000)
plugins/OStatus/classes/FeedSub.php

index d0ac83b56d754d96946c3c6bdd18c86e553c76ed..e5acc0ab68b436cfc0f700c1a2ecbff39a04f5f4 100644 (file)
@@ -295,7 +295,7 @@ class FeedSub extends Managed_DataObject
     {
         $fs = new FeedSub();
         // the "" empty string check is because we historically haven't saved unsubscribed feeds as NULL
-        $fs->whereAdd('sub_end IS NOT NULL AND sub_end!="" AND sub_end < NOW() - INTERVAL 1 day');
+        $fs->whereAdd('sub_end IS NOT NULL AND sub_end!="" AND sub_end < NOW() + INTERVAL 1 day');
         if (!$fs->find()) { // find can be both false and 0, depending on why nothing was found
             throw new NoResultException($fs);
         }