Skip to content

Commit 4a00227

Browse files
committed
fix-1
1 parent 1c6d2f9 commit 4a00227

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/src/validator.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ class Validator {
164164
path.joinAll([_origin, ...path.url.split(entry['href'] as String)]);
165165
if (path.extension(href).isEmpty) {
166166
// An aliased link to an `index.html` file.
167-
href = path.url.join(href, 'index.html');
167+
href = path.join(href, 'index.html');
168168
}
169169
if (!_visited.contains(href)) {
170170
_warn(PackageWarning.brokenLink, href, _origin,

0 commit comments

Comments
 (0)