Skip to content

Commit

Permalink
Fix: Adobe Acrobat / Reader no longer working #20
Browse files Browse the repository at this point in the history
  • Loading branch information
DanGough committed Sep 1, 2021
1 parent efec8ea commit f135e33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Nevergreen/Apps/Get-AdobeAcrobat.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ foreach ($Platform in $Platforms) {
$SearchCount = 5

do {
$ReleaseURL = Get-Link -Uri $ReleaseURL -MatchProperty title -Pattern '^next chapter$' -PrefixParent
$ReleaseURL = Get-Link -Uri $ReleaseURL -MatchProperty outerHTML -Pattern '>Next' -PrefixParent

$URL = Get-Link -Uri $ReleaseURL -MatchProperty href -Pattern $Platform.Pattern
if ($URL) {
Expand Down
2 changes: 1 addition & 1 deletion Nevergreen/Apps/Get-AdobeAcrobatReader.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ foreach ($Platform in $Platforms) {
$SearchCount = 5

do {
$ReleaseURL = Get-Link -Uri $ReleaseURL -MatchProperty title -Pattern '^next chapter$' -PrefixParent
$ReleaseURL = Get-Link -Uri $ReleaseURL -MatchProperty outerHTML -Pattern '>Next' -PrefixParent

$URL = Get-Link -Uri $ReleaseURL -MatchProperty href -Pattern $Platform.Pattern
if ($URL) {
Expand Down

0 comments on commit f135e33

Please sign in to comment.