From 8856ed2c97dd42f36a72b01b8870fcd1ad4e4436 Mon Sep 17 00:00:00 2001 From: Jeff Zucker <44732708+jeff-zucker@users.noreply.github.com> Date: Wed, 27 Mar 2019 15:05:28 -0700 Subject: [PATCH 1/3] Update webid-oidc.js --- src/webid-oidc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/webid-oidc.js b/src/webid-oidc.js index c5bef54..f90e4b2 100644 --- a/src/webid-oidc.js +++ b/src/webid-oidc.js @@ -75,6 +75,8 @@ export async function logout( await fetch('/.well-known/solid/logout', { credentials: 'include' }) } catch (e) { // Ignore errors for when we are not on a Solid pod + // But tell users it is harmless because they will see the GET failure in the console + console.err("Coulnd't find /.well-known/solid/logout, THIS IS HARMLESS."); } } catch (err) { console.warn('Error logging out of the WebID-OIDC session') From 43b3ef50852095392f4a739c7caa847b9d8fe80b Mon Sep 17 00:00:00 2001 From: Jeff Zucker <44732708+jeff-zucker@users.noreply.github.com> Date: Wed, 27 Mar 2019 16:50:39 -0700 Subject: [PATCH 2/3] Update webid-oidc.js --- src/webid-oidc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webid-oidc.js b/src/webid-oidc.js index f90e4b2..08482b4 100644 --- a/src/webid-oidc.js +++ b/src/webid-oidc.js @@ -76,7 +76,7 @@ export async function logout( } catch (e) { // Ignore errors for when we are not on a Solid pod // But tell users it is harmless because they will see the GET failure in the console - console.err("Coulnd't find /.well-known/solid/logout, THIS IS HARMLESS."); + console.info("Coulnd't find /.well-known/solid/logout, this is harmless."); } } catch (err) { console.warn('Error logging out of the WebID-OIDC session') From 63d9ce0d91b16c13b15b083840a4ce88ae0cb79d Mon Sep 17 00:00:00 2001 From: Jeff Zucker <44732708+jeff-zucker@users.noreply.github.com> Date: Wed, 27 Mar 2019 16:51:31 -0700 Subject: [PATCH 3/3] Update webid-oidc.js --- src/webid-oidc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webid-oidc.js b/src/webid-oidc.js index 08482b4..628873e 100644 --- a/src/webid-oidc.js +++ b/src/webid-oidc.js @@ -76,7 +76,7 @@ export async function logout( } catch (e) { // Ignore errors for when we are not on a Solid pod // But tell users it is harmless because they will see the GET failure in the console - console.info("Coulnd't find /.well-known/solid/logout, this is harmless."); + console.info("Couldn't find /.well-known/solid/logout, this is harmless."); } } catch (err) { console.warn('Error logging out of the WebID-OIDC session')