Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
- Configurable query icons (#9).
- "Unknown User" when logged in, but user's name not known (#51).
- "Username not given" when logged in, but user's name not known (#51, #65).

### Changed
- Changed loading message to "The page is loading. Just a moment please." (#26).
Expand Down
6 changes: 3 additions & 3 deletions src/authenticationProvider/authenticationProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default {
}
}
else{
idp = value;
idp = value;
}

if (!idp) {
Expand Down Expand Up @@ -63,7 +63,7 @@ export default {
throw new Error("You don't have access to this resource. You might need to log in.");
}
}

},
getIdentity: async function getIdentity() {
const session = getDefaultSession();
Expand Down Expand Up @@ -119,7 +119,7 @@ function getName(webIdThing) {
if (literalName) {
return literalName.value;
} else {
return "Unknown User";
return "Username not given";
}
}

Expand Down