Skip to content

Commit bde6ee4

Browse files
committed
Prefetch permissions for The Week CMS.
1 parent d31ae87 commit bde6ee4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/kotlin/com/jeffpdavidson/crosswordscraper/sources/TheWeekSource.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import org.w3c.dom.url.URL
88
object TheWeekSource : FixedHostSource() {
99

1010
override val sourceName: String = "The Week"
11-
override fun neededHostPermissions(url: URL) = listOf("https://*.theweek.com/*")
11+
override fun neededHostPermissions(url: URL) =
12+
listOf("https://*.theweek.com/*", "https://*.futurecdn.net/*")
1213

1314
override fun matchesUrl(url: URL): Boolean {
1415
return url.host == "theweek.com"

0 commit comments

Comments
 (0)