From 4ddef033636a65e20cc0ff3d8fd6042d0230a783 Mon Sep 17 00:00:00 2001 From: Ralf Ertzinger Date: Fri, 14 Jan 2011 10:31:13 +0100 Subject: [PATCH] Twitter: Status URLs can be HTTPS, too --- quotesite/TwitterGrabber.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 1.8.3.1