mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-22 18:17:49 +01:00
search bar fixes :3
This commit is contained in:
parent
39696765d2
commit
d393ba26ef
1 changed files with 2 additions and 2 deletions
|
@ -68,9 +68,9 @@ module.exports = function (app, config, renderTemplate) {
|
|||
|
||||
const poketube_universe_value = "poketube_smart_search";
|
||||
|
||||
if (query.includes("youtube.com")) {
|
||||
if (query?.includes("youtube.com")) {
|
||||
try {
|
||||
var videoid = query.split("v=");
|
||||
var videoid = query?.split("v=");
|
||||
|
||||
res.redirect("/watch?v=" + videoid[1]);
|
||||
} catch {
|
||||
|
|
Loading…
Reference in a new issue