Skip to content

Commit

Permalink
missing ';'s
Browse files Browse the repository at this point in the history
  • Loading branch information
ttyridal committed Aug 13, 2015
1 parent e154b77 commit 076b6c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/data/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ window.addEventListener('masterpassword-configload', function(e){
$.each(stored_sites, function(domain,v){
$.each(v, function(site, settings){
if (settings.username === undefined)
settings.username=""
stored_sites_table_append(domain,site,settings.type,settings.username,settings.generation,"3")
settings.username="";
stored_sites_table_append(domain,site,settings.type,settings.username,settings.generation,"3");
});
});
});
Expand Down

0 comments on commit 076b6c8

Please sign in to comment.