From: Dan Boger Date: Thu, 8 Jan 2009 20:51:26 +0000 (-0800) Subject: 1.6.1 - r339 - Fix DM formatting X-Git-Url: https://git.sommitrealweird.co.uk//gitweb/?p=twirssi-net-twitter-lite.git;a=commitdiff_plain;h=c88bcefe4ddc1c97c33b1e79ed14c032aa63592e 1.6.1 - r339 - Fix DM formatting --- diff --git a/twirssi.pl b/twirssi.pl index 4a6b5dd..547d1d9 100644 --- a/twirssi.pl +++ b/twirssi.pl @@ -12,7 +12,7 @@ $Data::Dumper::Indent = 1; use vars qw($VERSION %IRSSI); $VERSION = "1.6.1"; -my ($REV) = '$Rev: 337 $' =~ /(\d+)/; +my ($REV) = '$Rev: 339 $' =~ /(\d+)/; %IRSSI = ( authors => 'Dan Boger', contact => 'zigdon@gmail.com', @@ -764,7 +764,7 @@ sub monitor_child { } elsif ( $meta{type} eq 'reply' ) { push @lines, "[$account\\--> %B\@$meta{nick}%n$marker] $_\n",; } elsif ( $meta{type} eq 'dm' ) { - push @lines, "[$account%B\@$meta{nick}%n (%%WDM%%n)] $_\n",; + push @lines, "[$account%B\@$meta{nick}%n (%WDM%n)] $_\n",; } elsif ( $meta{type} eq 'error' ) { push @lines, "debug: $_\n" if &debug,; } elsif ( $meta{type} eq 'debug' ) {