mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
cipher collection apis
This commit is contained in:
@@ -2,6 +2,6 @@ export class CipherCollectionsRequest {
|
||||
collectionIds: string[];
|
||||
|
||||
constructor(collectionIds: string[]) {
|
||||
this.collectionIds = collectionIds;
|
||||
this.collectionIds = collectionIds == null ? [] : collectionIds;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user