Aldehyde Backlinks Outage (January 23誠鉉)
Backlinks were not working for Korean Pages.
Found that:
>>> for char in "바이올린 켜면 바이올레이션":... print(ord(char))...4814851060507324753632530204773232481485106050732471125106049496>>> for char in "바이올린 켜면 바이올레이션":... print(ord(char))...435944494363446943634457452743574469452332436744554358445545233243594449436344694363445745274357445443634469436144554523The backlink table was 완성형, but the text was 조합형.
So I added:
js
const documentTitleEncoded = documentTitle.normalize('NFC')Fixed the problem.
python
import unicodedataunicodedata.normalize('NFC', string)