mirror of
https://github.com/ChronosX88/psyced.git
synced 2024-11-09 20:11:00 +00:00
not just once
This commit is contained in:
parent
db4d7f0af7
commit
45480671b6
@ -38,7 +38,8 @@ int buffer_content(string all);
|
|||||||
string qHost() { return thehost; }
|
string qHost() { return thehost; }
|
||||||
|
|
||||||
void fetch(string murl) {
|
void fetch(string murl) {
|
||||||
if (url) return;
|
// why just once? this breaks twitter/*
|
||||||
|
//if (url) return;
|
||||||
// accept.c does this for us:
|
// accept.c does this for us:
|
||||||
//url = replace(murl, ":/", "://");
|
//url = replace(murl, ":/", "://");
|
||||||
// so we can use this method also in a normal way
|
// so we can use this method also in a normal way
|
||||||
|
@ -84,10 +84,11 @@ parse(string body, mapping headers) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fetch() {
|
fetch() {
|
||||||
|
P3(("%O ready to fetch from %O\n", ME, feed))
|
||||||
|
call_out( #'fetch, 3 * 59 ); // odd is better
|
||||||
feed -> content( #'parse, 0, 1 );
|
feed -> content( #'parse, 0, 1 );
|
||||||
feed -> fetch("http://twitter.com/statuses/friends_timeline.json"
|
feed -> fetch("http://twitter.com/statuses/friends_timeline.json"
|
||||||
"?count="+( lastid? ("44&since_id="+ lastid) : "44"));
|
"?count="+( lastid? ("23&since_id="+ lastid) : "23"));
|
||||||
call_out( #'fetch, 6 * 59 ); // odd is better
|
|
||||||
}
|
}
|
||||||
|
|
||||||
create() {
|
create() {
|
||||||
|
Loading…
Reference in New Issue
Block a user