1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

Remove legacy key support form platform code (#15351)

This commit is contained in:
Bernd Schoolmann
2025-08-01 20:06:22 +02:00
committed by GitHub
parent b7df5e9bdb
commit 0cc473fb0f
3 changed files with 6 additions and 8 deletions

View File

@@ -170,7 +170,7 @@ export class EditCommand {
let folderView = await folder.decrypt();
folderView = FolderExport.toView(req, folderView);
const userKey = await this.keyService.getUserKeyWithLegacySupport(activeUserId);
const userKey = await this.keyService.getUserKey(activeUserId);
const encFolder = await this.folderService.encrypt(folderView, userKey);
try {
const folder = await this.folderApiService.save(encFolder, activeUserId);