fix(atproto): pass default to getNodeParameter('collection') for blob ops
The collection resourceLocator field is hidden via displayOptions for
the blob operations (uploadBlob / getBlob / listBlobs). Reading it
unconditionally at the top of the execute loop triggered `Could not get
parameter` on n8n 2.23+ where hidden parameters without stored values
throw instead of returning a default.
Pass an empty resourceLocator (`{ mode: 'list', value: '' }`) as the
fallback so the call always resolves; the value is ignored by the blob
switch cases.
Caught while testing List Blobs against a live PDS on the dev server.