mirror of
https://github.com/bitwarden/cli
synced 2025-12-06 04:23:19 +00:00
Merge pull request #217 from bitwarden/bugfix-no-attachments-error
Add null check when getting attachment from item
This commit is contained in:
@@ -253,7 +253,7 @@ export class GetCommand {
|
||||
}
|
||||
|
||||
const cipher = await this.getCipherView(itemId);
|
||||
if (cipher == null || Array.isArray(cipher) || cipher.attachments.length === 0) {
|
||||
if (cipher == null || Array.isArray(cipher) || cipher.attachments == null || cipher.attachments.length === 0) {
|
||||
return Response.error('No attachments available for this item.');
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user