Skip to content

Commit b8f9029

Browse files
authored
Fix: Fixed ArgumentException in WindowsJumpListService.RefreshPinnedFoldersAsync() (#15844)
1 parent d7ee48b commit b8f9029

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public async Task RefreshPinnedFoldersAsync()
102102
}
103103
finally
104104
{
105-
App.QuickAccessManager.PinnedItemsWatcher.EnableRaisingEvents = true;
105+
SafetyExtensions.IgnoreExceptions(() => App.QuickAccessManager.PinnedItemsWatcher.EnableRaisingEvents = true);
106106
}
107107
}
108108

0 commit comments

Comments
 (0)