Fix assert

This commit is contained in:
Vishesh Handa
2021-06-30 11:16:09 +02:00
parent 8d1b132a9c
commit 1401d572f0

View File

@ -100,7 +100,7 @@ class LinkResolver {
folder = folder.rootFolder;
}
assert(fullPath.length == folder.folderPath.length);
assert(fullPath.length != folder.folderPath.length);
if (fullPath.length == folder.folderPath.length) {
// FIXME: Why is this case occurring?
return null;