[vichan] recognize board url w/o trailing slash (#3087)

pull/2390/merge
enduser420 2 years ago committed by GitHub
parent ac6111e693
commit 2ff1897421
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -122,7 +122,7 @@ class VichanThreadExtractor(VichanExtractor):
class VichanBoardExtractor(VichanExtractor):
"""Extractor for vichan boards"""
subcategory = "board"
pattern = BASE_PATTERN + r"/([^/?#]+)/(?:index|catalog|\d+|$)"
pattern = BASE_PATTERN + r"/([^/?#]+)(?:/index|/catalog|/\d+|/?$)"
test = (
("https://8kun.top/v/index.html", {
"pattern": VichanThreadExtractor.pattern,
@ -138,7 +138,7 @@ class VichanBoardExtractor(VichanExtractor):
("https://wikieat.club/cel/catalog.html"),
("https://wikieat.club/cel/2.html"),
("https://smuglo.li/a/", {
("https://smuglo.li/a", {
"pattern": VichanThreadExtractor.pattern,
"count": ">= 100",
}),

Loading…
Cancel
Save