]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fix ModuleManager's external source lists not working with HTTPS.
authorPeter Powell <petpow@saberuk.com>
Wed, 11 Apr 2018 23:30:53 +0000 (00:30 +0100)
committerPeter Powell <petpow@saberuk.com>
Wed, 11 Apr 2018 23:30:53 +0000 (00:30 +0100)
modulemanager

index bc46194082c4ec724d6e4108d03789ea40941f40..f00234994a4dfc59990a1128b46ec4f4f9edd250 100755 (executable)
@@ -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";