Fix handling of usernames with capital letters in the web page.

Add updating and backup/restore instructions.
This commit is contained in:
knotteye
2019-11-10 08:27:00 -06:00
parent 97b1132ef0
commit 73e91783e3
2 changed files with 17 additions and 3 deletions

View File

@ -52,9 +52,9 @@ async function init(satyr: any, port: number, ircconf: any){
});
});
app.get('/users/*', (req, res) => {
njkconf.user = req.url.split('/')[2].toLowerCase();
db.query('select title,about from user_meta where username='+db.raw.escape(njkconf.user)).then((result) => {
db.query('select username,title,about from user_meta where username='+db.raw.escape(req.url.split('/')[2].toLowerCase())).then((result) => {
if(result[0]){
njkconf.user = result[0].username;
njkconf.streamtitle = result[0].title;
njkconf.about = result[0].about;
res.render('user.njk', njkconf);