diff --git a/src/linkManager.ts b/src/linkManager.ts index cc9d1d6..a627a78 100644 --- a/src/linkManager.ts +++ b/src/linkManager.ts @@ -459,10 +459,11 @@ export class LinkManager { } break; default: - //metadata is not a link, return null - return null; + // We will continue to check other DataView properties + break; } } + // If no DataView properties match, we consider that metadata key does not exist return null; }