From: Ralf Ertzinger Date: Fri, 14 Jan 2011 09:31:13 +0000 (+0100) Subject: Twitter: Status URLs can be HTTPS, too X-Git-Url: https://git.camperquake.de/gitweb.cgi?p=quotesite.git;a=commitdiff_plain;h=4ddef033636a65e20cc0ff3d8fd6042d0230a783 Twitter: Status URLs can be HTTPS, too --- diff --git a/quotesite/TwitterGrabber.pm b/quotesite/TwitterGrabber.pm index 3c2c0aa..dda3bae 100644 --- a/quotesite/TwitterGrabber.pm +++ b/quotesite/TwitterGrabber.pm @@ -21,7 +21,7 @@ sub new { my $self = $class->SUPER::new(); $self->{'NAME'} = 'twitter.com'; - $self->{'PATTERNS'} = ['(http://twitter.com/(?:\#\!/)?[^/]+/status(?:es)?/(\d+))']; + $self->{'PATTERNS'} = ['(https?://twitter.com/(?:\#\!/)?[^/]+/status(?:es)?/(\d+))']; bless($self, $class); $self->_prepare_parameters();