diff options
| author | 2018-04-12 00:30:53 +0100 | |
|---|---|---|
| committer | 2018-04-12 00:30:53 +0100 | |
| commit | ecfa0d3847d96cd63ddb5c814f99d2020c8b0a2e (patch) | |
| tree | b9fa542cd420a0a6725a643d59391cdb8715e284 | |
| parent | Fix blank instead of empty PART message when a user is shunned (diff) | |
Fix ModuleManager's external source lists not working with HTTPS.
| -rwxr-xr-x | modulemanager | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modulemanager b/modulemanager index bc4619408..f00234994 100755 --- a/modulemanager +++ b/modulemanager @@ -99,7 +99,7 @@ sub parse_url { $mod->{description} = $1; } elsif (/^mask (.*)/) { $mod->{mask} = $1; - } elsif (m#^source (http://\S+)#) { + } elsif (/^source (\S+)/) { parse_url $1; } else { print "Unknown line in $src: $_\n"; |
