Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/linkManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
continue
}
}
// If no DataView properties match, we consider that metadata key does not exist
return null;
}

Expand Down