Fix parseText crash on nil node

このコミットが含まれているのは:
Zed 2019-10-18 01:00:35 +02:00
コミット e73963f9e9
1個のファイルの変更1行の追加0行の削除

ファイルの表示

@ -43,6 +43,7 @@ proc isProtected*(profile: XmlNode): bool =
getHeader(profile).select(".Icon.Icon--protected") != nil
proc parseText*(text: XmlNode; skipLink=""): string =
if text == nil: return
for el in text:
case el.kind
of xnText: