Skip to content

Commit

Permalink
data: more linkWikiDataArrays tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
towerofnix committed Dec 28, 2023
1 parent 66f96e0 commit 14b8aba
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/data/yaml.js
Original file line number Diff line number Diff line change
Expand Up @@ -1596,6 +1596,7 @@ export function linkWikiDataArrays(wikiData, {
for (const [things, keys] of linkWikiDataSpec.entries()) {
if (things === undefined) continue;
for (const thing of things) {
if (thing === undefined) continue;
for (const key of keys) {
if (!(key in wikiData)) continue;
if (XXX_decacheWikiData) thing[key] = [];
Expand Down

0 comments on commit 14b8aba

Please sign in to comment.