mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 00:57:59 +00:00
test ignore
This commit is contained in:
parent
a9e0acbd0a
commit
dcb80d6a51
@ -372,15 +372,15 @@ module.exports = function (app, config, renderTemplate) {
|
||||
|
||||
|
||||
|
||||
if (continuation) {
|
||||
const currentAuthorId = ID;
|
||||
const firstVideoAuthorId = tj.videos[0].authorId;
|
||||
|
||||
if (currentAuthorId !== firstVideoAuthorId) {
|
||||
res.status(400).send("continuation does not match the channel :c - how tf did this happen :sob:");
|
||||
}
|
||||
}
|
||||
|
||||
if (continuation) {
|
||||
const currentAuthorId = String(cinv.authorId).trim();
|
||||
const firstVideoAuthorId = String(tj.videos[0].authorId).trim();
|
||||
|
||||
if (currentAuthorId.localeCompare(firstVideoAuthorId) !== 0) {
|
||||
res.status(400).send("Continuation does not match the channel :c");
|
||||
}
|
||||
}
|
||||
|
||||
renderTemplate(res, req, "channel.ejs", {
|
||||
ID,
|
||||
tab,
|
||||
|
Loading…
Reference in New Issue
Block a user