Add dictionary key check for d.severity

This commit is contained in:
Dennis Falling 2018-09-23 10:50:15 -04:00
parent ae024293e4
commit 2f17e368b5
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ function! airline#extensions#languageclient#get(type)
let cnt = 0
for d in s:diagnostics_for_buffer()
if d.severity == a:type
if has_key(d, 'severity') && d.severity == a:type
let cnt += 1
endif
endfor