1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

[PM-3100] Fixes imports of "reduced" psono data (#5859)

* Fixes imports of "reduced" psono data

* Fix typo in file name

---------

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
KuhnChris
2023-08-25 21:16:53 +02:00
committed by GitHub
parent 708eb21a49
commit f2df456516
4 changed files with 46 additions and 5 deletions

View File

@@ -131,7 +131,7 @@ export class PsonoJsonImporter extends BaseImporter implements Importer {
this.processKvp(
cipher,
"website_password_auto_submit",
entry.website_password_auto_submit.toString(),
entry.website_password_auto_submit?.toString(),
FieldType.Boolean
);

View File

@@ -38,15 +38,15 @@ export type PsonoEntryTypes =
export interface WebsitePasswordEntry extends RecordBase {
type: "website_password";
autosubmit: boolean;
urlfilter: string;
autosubmit?: boolean;
urlfilter?: string;
website_password_title: string;
website_password_url: string;
website_password_username: string;
website_password_password: string;
website_password_notes: string;
website_password_auto_submit: boolean;
website_password_url_filter: string;
website_password_auto_submit?: boolean;
website_password_url_filter?: string;
}
export interface PsonoEntry {