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:
@@ -203,8 +203,8 @@ function initApiService() {
|
||||
dataType: 'json',
|
||||
success: function (response) {
|
||||
var data = [];
|
||||
for (var i = 0; i < response.length; i++) {
|
||||
data.push(new CipherResponse(response[i]));
|
||||
for (var i = 0; i < response.Data.length; i++) {
|
||||
data.push(new CipherResponse(response.Data[i]));
|
||||
}
|
||||
|
||||
success(new ListResponse(data))
|
||||
|
||||
Reference in New Issue
Block a user