1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-17 23:50:58 -05:00

Pass explicit userId into CreateAsync

This commit is contained in:
Thomas Rittson
2025-05-20 08:45:59 +10:00
parent fbfba2beb5
commit 0b70c42d2d
5 changed files with 12 additions and 14 deletions

View File

@ -115,7 +115,7 @@ public class ImportCiphersCommand : IImportCiphersCommand
}
// Create it all
await _cipherRepository.CreateAsync(ciphers, newFolders);
await _cipherRepository.CreateAsync(importingUserId, ciphers, newFolders);
// push
await _pushService.PushSyncVaultAsync(importingUserId);