Skip to content
Merged
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 src/login/login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@
let m2: string
if (err instanceof UnauthorizedError) {
m2 =
'Ooops - you are not authenticated (properly logged in) to for me to read your preference file. Try loggin out and logging in?'
'Oops — you are not authenticated (properly logged in), so SolidOS cannot read your preferences file. Try logging out and then logging back in.'
alert(m2)
} else if (err instanceof CrossOriginForbiddenError) {
m2 = `Unauthorized: Assuming preference file blocked for origin ${window.location.origin}`
Expand Down Expand Up @@ -636,7 +636,7 @@
me = null
try {
alert(message)
} catch (e) {

Check warning on line 639 in src/login/login.ts

View workflow job for this annotation

GitHub Actions / build (22.x)

'e' is defined but never used

Check warning on line 639 in src/login/login.ts

View workflow job for this annotation

GitHub Actions / build (18.x)

'e' is defined but never used

Check warning on line 639 in src/login/login.ts

View workflow job for this annotation

GitHub Actions / build (20.x)

'e' is defined but never used
window.alert(message)
}
box.refresh()
Expand Down Expand Up @@ -716,7 +716,7 @@
await fetch(openidConfiguration.end_session_endpoint, { credentials: 'include' })
}
}
} catch (err) {

Check warning on line 719 in src/login/login.ts

View workflow job for this annotation

GitHub Actions / build (22.x)

'err' is defined but never used

Check warning on line 719 in src/login/login.ts

View workflow job for this annotation

GitHub Actions / build (18.x)

'err' is defined but never used

Check warning on line 719 in src/login/login.ts

View workflow job for this annotation

GitHub Actions / build (20.x)

'err' is defined but never used
// Do nothing
}
}
Expand Down
Loading