Skip to content
This repository has been archived by the owner on Apr 17, 2020. It is now read-only.

Commit

Permalink
note FIXME
Browse files Browse the repository at this point in the history
  • Loading branch information
genehack committed Jan 2, 2012
1 parent 3ccaf05 commit 8bcd6c0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/App/StatusSkein/CLI/Client/Twitter.pm
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,15 @@ class App::StatusSkein::CLI::Client::Twitter extends App::StatusSkein::CLI::Clie
method add_fave ( Str $id ) { $self->create_favorite( $id ) };
method del_fave ( Str $id ) { $self->destroy_favorite( $id ) };

### FIXME this can't work as things currently are because we don't know the
### screen name of the account...
# after filter_posts ( Num :$since , ArrayRef :$posts ) {
# return [ grep {
# defined $_ &&
# $_->can('retweeter') &&
# $_->retweeter->screen_name eq $account->screen_name
# } @$posts ];
# };

method recycle_post ( Str $id ) { $self->retweet( $id ) };
}

0 comments on commit 8bcd6c0

Please sign in to comment.