add user avatar info to getPosts

This commit is contained in:
Mystikfluu
2022-08-28 15:45:54 +02:00
parent 3dc6c37e49
commit 692af27078
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -564,7 +564,7 @@ router.get("/api/getPosts/*", async function (req, res) {
router.get("/api/getPosts", async function (req, res) {
res.set("Access-Control-Allow-Origin", "*");
if (req.query.channel != undefined) {
let sql = `select post_user_name,post_text,post_time,post_special_text,post_id,post_from_bot,post_reply_id from ipost.posts where post_receiver_name = ? group by post_id order by post_id desc limit 30;`;
let sql = `select post_user_name,post_text,post_time,post_special_text,post_id,post_from_bot,post_reply_id,User_Avatar from ipost.posts inner join ipost.users on (User_Name = post_user_name) where post_receiver_name = ? group by post_id order by post_id desc limit 30;`;
con.query(sql, [encodeURIComponent(req.query.channel)], function (err, result) {
if (err)
throw err;