mirror of
git://git.psyced.org/git/psyced
synced 2024-08-15 03:25:10 +00:00
fixed float output
This commit is contained in:
parent
9d10b13569
commit
b22f2e8b9b
1 changed files with 3 additions and 2 deletions
|
@ -111,7 +111,8 @@ fetch() {
|
||||||
// twitter ignores since_id if count is present. stupid.
|
// twitter ignores since_id if count is present. stupid.
|
||||||
feed -> fetch("http://twitter.com/statuses/friends_timeline.json?"
|
feed -> fetch("http://twitter.com/statuses/friends_timeline.json?"
|
||||||
// +( lastid? ("since_id="+ lastid) : "count=23"));
|
// +( lastid? ("since_id="+ lastid) : "count=23"));
|
||||||
"count="+( lastid? ("23&since_id="+ lastid) : "23"));
|
"count="+( lastid? ("23&since_id="+
|
||||||
|
sprintf("%F", lastid)) : "23"));
|
||||||
}
|
}
|
||||||
|
|
||||||
create() {
|
create() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue