fix safe link attribution retrieval
With some nodes you got errors like:
```
if output.links is not None and len(output.links) > 0:
^^^^^^^^^^^^
AttributeError: 'types.SimpleNamespace' object has no attribute 'links'
```
or
```
if input.link is None:
^^^^^^^^^^
AttributeError: 'types.SimpleNamespace' object has no attribute 'link'
```
After adding `getattr` with `default` as `None` it works without any problem. T
Tymoteusz Abramek committed
91fe3a35824e199dce13c3403dd8e78a9f53b827
Parent: 1c258c2
Committed by GitHub <noreply@github.com>
on 2/17/2026, 5:40:12 AM