Fix incorrect condition
This commit is contained in:
parent
8d6dbcb491
commit
19f3e35446
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ Export-StartLayout $startLayoutFile;
|
|||
$startLayout = Get-Content "$startLayoutFile" | ConvertFrom-Json;
|
||||
|
||||
$startLayout.pinnedList = $startLayout.pinnedList | Where-Object {
|
||||
return (
|
||||
return -not (
|
||||
($pinnedItem.desktopAppLink -like "*Microsoft Edge*") -or
|
||||
[System.Linq.Enumerable]::Any(
|
||||
@(
|
||||
|
|
Loading…
Reference in a new issue