Skip to content

Commit

Permalink
Track update requests
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmaehl committed Feb 24, 2021
1 parent dbc5fc8 commit 89c744f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NotCPUCores.au3
Original file line number Diff line number Diff line change
Expand Up @@ -1661,7 +1661,7 @@ Func _GetLatestRelease($sCurrent)
Local $dAPIBin
Local $sAPIJSON

$dAPIBin = InetRead("https://api.github.com/repos/rcmaehl/NotCPUCores/releases")
$dAPIBin = InetRead("https://api.fcofix.org/repos/rcmaehl/NotCPUCores/releases")
If @error Then Return SetError(1, 0, 0)
$sAPIJSON = BinaryToString($dAPIBin)
If @error Then Return SetError(2, 0, 0)
Expand Down

2 comments on commit 89c744f

@micwoj92
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, this made me think. Is it possible to host copy of that "https://api.github.com/repos/rcmaehl/NotCPUCores/releases" on "http://api.fcofix.org/repos/rcmaehl/NotCPUCores/releases" to solve issue 101? I know that it is redirect but it should be possible to just host same content.

@rcmaehl
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm, this made me think. Is it possible to host copy of that "https://api.github.com/repos/rcmaehl/NotCPUCores/releases" on "http://api.fcofix.org/repos/rcmaehl/NotCPUCores/releases" to solve issue 101? I know that it is redirect but it should be possible to just host same content.

I'll look into it

Please sign in to comment.