Skip to content

Commit b8003eb

Browse files
committed
Fix
1 parent 4ed5515 commit b8003eb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Files.App/Data/Contexts/ContentPage/ContentPageContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ and not ContentPageTypes.RecycleBin
251251
and not ContentPageTypes.ZipFolder
252252
and not ContentPageTypes.SearchResults
253253
and not ContentPageTypes.MtpDevice
254-
and not ContentPageTypes.ReleaseNotes;
254+
and not ContentPageTypes.ReleaseNotes
255255
and not ContentPageTypes.Settings;
256256
}
257257
}

src/Files.App/Data/Items/LocationItem.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public string Path
4949
Path.StartsWith("shell:", StringComparison.OrdinalIgnoreCase) ||
5050
Path.EndsWith(ShellLibraryItem.EXTENSION, StringComparison.OrdinalIgnoreCase) ||
5151
Path == "Home" ||
52-
Path == "ReleaseNotes"
52+
Path == "ReleaseNotes" ||
5353
Path == "Settings"
5454
? Text
5555
: Path;

0 commit comments

Comments
 (0)