diff --git a/index.js b/index.js index d98da67..3943182 100644 --- a/index.js +++ b/index.js @@ -17,7 +17,7 @@ const { const path = require("path"); // Init const app = express(); -const r = new redis(6379, "192.168.1.8", { +const r = new redis(6379, "192.168.1.11", { connectionName: `ALEXHELDT${dev ? "-dev" : ""}`, }); const get = promisify(r.get).bind(r); @@ -72,8 +72,8 @@ app.get("/", async (req, res) => { socials, music, creator: { - name: await r.get("creator_name"), - website: await r.get("creator_website"), + name: await r.get("creator_name") || 'https://himbo.cat', + website: await r.get("creator_website") || "lio", }, }); });