Skip to content

Commit 2e416f1

Browse files
[autofix.ci] apply automated fixes
1 parent 31c22d0 commit 2e416f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/utils/readme.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ function matchPlaygroundProvider(url: string): PlaygroundProvider | null {
132132
if (
133133
(hostname === domain || hostname.endsWith(`.${domain}`)) &&
134134
(!provider.paths || provider.paths.some(path => parsed.pathname.startsWith(path))) &&
135-
(!provider.pathContains || provider.pathContains.some(seg => parsed.pathname.includes(seg)))
135+
(!provider.pathContains ||
136+
provider.pathContains.some(seg => parsed.pathname.includes(seg)))
136137
) {
137138
return provider
138139
}

0 commit comments

Comments
 (0)