mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
Fixed URL used to check Gravatar network availability (#12949)
This commit is contained in:
parent
2c45ae73ca
commit
cd94d11ad7
2 changed files with 2 additions and 1 deletions
1
changes/fix-gravatar-url
Normal file
1
changes/fix-gravatar-url
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Fixed URL used to check Gravatar network availability.
|
||||
|
|
@ -99,7 +99,7 @@ const LoginPage = ({ router, location }: ILoginPageProps) => {
|
|||
// API calls
|
||||
(async function testGravatarAvailability() {
|
||||
try {
|
||||
const response = await fetch("https://gravatar.com/avatar");
|
||||
const response = await fetch("https://gravatar.com/gravatar");
|
||||
if (response.ok) {
|
||||
localStorage.setItem("gravatar_available", "true");
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Reference in a new issue