Closed MeltWS closed 4 years ago
In the event of a backend giving candidates without docs we have to check if the doc exist before calling split-string
In company-posframe-quickhelp-show() the doc of current candidate is used in a split-string call. throwing an error in the case of nil doc:
company-posframe-quickhelp-show()
split-string call
nil
proposed fix: Move the existing check before the split-string call.
merged, thanks!
In the event of a backend giving candidates without docs we have to check if the doc exist before calling split-string
In
company-posframe-quickhelp-show()
the doc of current candidate is used in asplit-string call
. throwing an error in the case ofnil
doc:proposed fix: Move the existing check before the split-string call.