Forráskód Böngészése

Call enqueue_actor_fresh() from rss_to_timeline().

grunfink 1 éve
szülő
commit
cd51d5310c
1 módosított fájl, 3 hozzáadás és 2 törlés
  1. 3 2
      rss.c

+ 3 - 2
rss.c

@@ -227,10 +227,11 @@ void rss_to_timeline(snac *user, const char *url)
                 continue;
             }
 
-            if (!valid_status(actor_request(user, attr_to, NULL)))
-                continue;
+            enqueue_actor_refresh(user, attr_to, 0);
 
             timeline_add(user, id, obj);
+
+            snac_log(user, xs_fmt("new '%s' (RSS) %s %s", type, attr_to, id));
         }
     }