Skip to content

Commit

Permalink
- Fixes nested subfolders encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
glushchenko committed Nov 3, 2022
1 parent 49cf9d5 commit 1251495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FSNotes/View/SidebarOutlineView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1527,7 +1527,7 @@ class SidebarOutlineView: NSOutlineView,
}

for project in projects {
if project.showNestedFoldersContent, let child = project.getAllChild() {
if project.showNestedFoldersContent, !project.isEncrypted, let child = project.getAllChild() {
for item in child {
if !projects.contains(item) {
projects.append(item)
Expand Down

0 comments on commit 1251495

Please sign in to comment.