Skip to content

Commit 2672508

Browse files
committed
Fix an issue
1 parent 4fb2dff commit 2672508

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.App/Services/Windows/WindowsJumpListService.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ private void AddFolder(string path, string group, JumpList instance)
171171
displayName = Path.GetFileName(path);
172172
}
173173

174-
var jumplistItem = JumpListItem.CreateWithArguments(path, displayName);
174+
var jumplistItem = Windows.UI.StartScreen.JumpListItem.CreateWithArguments(path, displayName);
175175
jumplistItem.Description = jumplistItem.Arguments ?? string.Empty;
176176
jumplistItem.GroupName = group;
177177
jumplistItem.Logo = new Uri("ms-appx:///Assets/FolderIcon.png");

0 commit comments

Comments
 (0)