fix these as well

This commit is contained in:
Ashley 2023-11-08 17:08:37 +00:00
parent bf79fd692f
commit 1226bdaaf0

View file

@ -50,7 +50,7 @@ module.exports = function (app, config, renderTemplate) {
});
app.get("/avatars/:v", async function (req, res) {
var url = `https://yt3.ggpht.com/${req.params.v}`;
var url = `https://yt.sudovanilla.com/ggpht/${req.params.v}`;
let f = await modules.fetch(url + `?cachefixer=${btoa(Date.now())}`, {
method: req.method,
@ -60,7 +60,7 @@ app.get("/avatars/:v", async function (req, res) {
});
app.get("/avatars/ytc/:v", async function (req, res) {
var url = `https://yt3.ggpht.com/ytc/${req.params.v.replace("ytc", "")}`;
var url = `https://yt.sudovanilla.com/ggpht/ytc/${req.params.v.replace("ytc", "")}`;
let f = await modules.fetch(url + `?cachefixer=${btoa(Date.now())}`, {
method: req.method,