mirror of
https://github.com/bitwarden/browser
synced 2026-01-08 11:33:28 +00:00
api support for sharing
This commit is contained in:
@@ -6,7 +6,10 @@ export class LoginUriData {
|
||||
uri: string;
|
||||
match: UriMatchType = null;
|
||||
|
||||
constructor(data: LoginUriApi) {
|
||||
constructor(data?: LoginUriApi) {
|
||||
if (data == null) {
|
||||
return;
|
||||
}
|
||||
this.uri = data.uri;
|
||||
this.match = data.match;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user