thomblr

convrt yr tumblr <3 to bookmrks
git clone https://wehaveforgeathome.hates.computer/thomblr.git
Log | Files | Refs | LICENSE

commit f10578be8332c3e5abed9e39c9be92b34330c00c
parent 92366d94a25c1c0db366840437589bdcdd717989
Author: Ryan Wolf <rwolf@borderstylo.com>
Date:   Wed, 23 Mar 2011 16:18:00 +0000

handles all known types

Diffstat:
Mtumblr.js | 6+-----
1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/tumblr.js b/tumblr.js @@ -25,10 +25,6 @@ var video = function (post) { exports.serialize = function (post) { switch (post['@'].type) { - case 'quote': - case 'conversation': - case 'regular': - return regular(post); case 'link': return link(post); case 'photo': @@ -36,5 +32,5 @@ exports.serialize = function (post) { case 'video': return video(post); } - return sys.inspect(post); + return regular(post); };