fix: subdomains to deleted files tried to deref fs node

This commit is contained in:
KernelDeimos 2025-01-15 10:45:54 -05:00
parent 37ca89228c
commit 38ccc82c8e

View File

@ -76,6 +76,10 @@ class Mapping extends AdvancedBase {
}
if ( value instanceof FSNodeContext ) {
if ( ! await value.exists() ) {
value = undefined;
continue;
}
value = await value.getSafeEntry();
sanitized = true;
}