tangled
alpha
login
or
join now
plc.jbc.lol
/
KcIA
0
fork
atom
Keycloak to IndieAuth translator (mirror of https://git.jbc.lol/jbcrn/KcIA)
0
fork
atom
overview
issues
pulls
pipelines
also on redirect uri
plc.jbc.lol
4 months ago
bb5e6f0f
94fe289c
+4
1 changed file
expand all
collapse all
unified
split
src
index.js
+4
src/index.js
···
42
42
client_id = "https://" + client_id
43
43
}
44
44
45
45
+
if (!redirect_uri.startsWith("http")) {
46
46
+
redirect_uri = "https://" + redirect_uri
47
47
+
}
48
48
+
45
49
const clientUri = new URL(client_id).hostname.replaceAll('.', '-');
46
50
47
51
let clientName = clientUri.hostname, clientIcon;