Skip to content

Commit

Permalink
880 subject fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thisismattmiller committed Nov 8, 2024
1 parent 78047bc commit 5e67c02
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/stores/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -4012,7 +4012,10 @@ export const useProfileStore = defineStore('profile', {
nonLatin: this.returnLatinLabelForPt(ptFound)
}
}
nonLatinMap[ptFound['@guid']].scripts.push(nl.node['@language'].split("-")[1])
if (nl && nl.node && nl.node['@language']){
nonLatinMap[ptFound['@guid']].scripts.push(nl.node['@language'].split("-")[1])
}


}
// unique array
Expand Down

0 comments on commit 5e67c02

Please sign in to comment.