Skip to content

Commit

Permalink
Add tags to encryption count
Browse files Browse the repository at this point in the history
  • Loading branch information
moughxyz committed Aug 22, 2017
1 parent e1f6316 commit 1b79ca2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,8 +222,8 @@ class AccountMenu {
}

$scope.encryptionStatusForNotes = function() {
var allNotes = modelManager.filteredNotes;
return allNotes.length + "/" + allNotes.length + " notes encrypted";
var items = modelManager.allItemsMatchingTypes(["Note", "Tag"]);
return items.length + "/" + items.length + " notes and tags encrypted";
}

$scope.importJSONData = function(data, password, callback) {
Expand Down

0 comments on commit 1b79ca2

Please sign in to comment.