1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 23:03:32 +00:00

fix sync and vault listing bugs

This commit is contained in:
Kyle Spearrin
2016-09-06 23:30:49 -04:00
parent 5a39d4c73e
commit 4092e2ecc3
11 changed files with 85 additions and 58 deletions

View File

@@ -2,7 +2,7 @@
this.id = response.Id;
this.folderId = response.FolderId;
this.type = response.Type;
this.favorite = response.favorite;
this.favorite = response.Favorite;
this.data = response.Data;
this.revisionDate = response.RevisionDate;
};
@@ -21,7 +21,7 @@ var SiteResponse = function (response) {
this.username = response.Username;
this.password = response.Password;
this.notes = response.Notes;
this.favorite = response.favorite;
this.favorite = response.Favorite;
this.revisionDate = response.RevisionDate;
if(response.Folder) {
@@ -47,7 +47,7 @@ var TokenResponse = function (response) {
};
var ListResponse = function (data) {
this.Data = data;
this.data = data;
};
var ErrorResponse = function (response) {