mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 02:34:38 -05:00
redirect to shorts if theres no videos :3
This commit is contained in:
parent
43682f2a87
commit
358a4d8311
1 changed files with 5 additions and 0 deletions
|
@ -369,6 +369,11 @@ module.exports = function (app, config, renderTemplate) {
|
|||
);
|
||||
const dnoreplace = about?.Description.toString();
|
||||
|
||||
|
||||
if(!Array.isArray(tj?.videos) && Array.isArray(shorts?.videos) ) {
|
||||
res.redirect(`/channel?id=${req.query.id}&tab=shorts`)
|
||||
}
|
||||
|
||||
renderTemplate(res, req, "channel.ejs", {
|
||||
ID,
|
||||
tab,
|
||||
|
|
Loading…
Reference in a new issue