mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 08:58:24 +01:00
fix these as well
This commit is contained in:
parent
bf79fd692f
commit
1226bdaaf0
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue