Skip to content

Commit

Permalink
Merge pull request #31 from gedge/all_mods
Browse files Browse the repository at this point in the history
1-liner to fix Identica issue
  • Loading branch information
gedge committed Jul 27, 2011
2 parents d8c1e94 + d300a55 commit 9bca034
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions twirssi.pl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

use vars qw($VERSION %IRSSI);

$VERSION = sprintf '%s', q$Version: v2.5.1beta2$ =~ /^\w+:\s+v(\S+)/;
$VERSION = sprintf '%s', q$Version: v2.5.1beta3$ =~ /^\w+:\s+v(\S+)/;
%IRSSI = (
authors => 'Dan Boger',
contact => 'zigdon@gmail.com',
Expand All @@ -25,7 +25,7 @@
. 'Can optionally set your bitlbee /away message to same',
license => 'GNU GPL v2',
url => 'http://twirssi.com',
changed => '$Date: 2011-07-13 20:57:10 +0000$',
changed => '$Date: 2011-07-27 22:20:01 +0000$',
);

my $twit; # $twit is current logged-in Net::Twitter object (usually one of %twits)
Expand Down Expand Up @@ -1439,7 +1439,7 @@ sub get_friends {
for my $page (1..10) {
&debug($fh, "%G$username%n Loading friends page $page...");
my $friends;
if ( ref($u_twit) =~ /^Net::Twitter/ ) {
if ( $username =~ /\@Twitter/ ) {
$friends = $u_twit->friends( { cursor => $cursor } );
last unless $friends;
$cursor = $friends->{next_cursor};
Expand Down

0 comments on commit 9bca034

Please # to comment.