Skip to content

Commit c6a98b8

Browse files
[mirotalkbro] - update readme
1 parent 7602c0d commit c6a98b8

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

README.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@
2828

2929
---
3030

31-
<p align="center">
32-
Join our community for questions, discussions, and support on <a href="https://discord.gg/rgGYfeYW3N">Discord</a>
33-
</p>
31+
<strong>
32+
<p align="center">
33+
Join our Community for questions, help, support, ideas, and discussions on <a href='https://discord.gg/rgGYfeYW3N'>Discord</a>
34+
</p>
35+
</strong>
3436

3537
---
3638

app/server.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,15 +169,15 @@ const OIDC = {
169169

170170
const OIDCAuth = function (req, res, next) {
171171
if (OIDC.enabled) {
172-
if (req.oidc.isAuthenticated()) {
172+
if (req.oidc.isAuthenticated()) {
173173
log.debug('OIDC ------> User already Authenticated');
174174
return next();
175175
}
176176
requiresAuth()(req, res, next);
177177
} else {
178178
next();
179179
}
180-
}
180+
};
181181

182182
// public html files
183183
const html = {

0 commit comments

Comments
 (0)