Update src/libpoketube/init/pages-account.js

This commit is contained in:
ashley 2025-09-02 01:12:42 +02:00
parent 1a7f6a607b
commit 7fbebf2488

View File

@ -28,13 +28,7 @@ app.get("/api/get-channel-subs", async function (req, res) {
app.get("/api/remove-channel-sub", async function (req, res) {
const userid = req.query.ID;
const channelToRemove = req.query.channelID;
if (channelId === "ALL") {
db.delete(`user.${userId}.subs`);
db.set(`user.${userId}.subs`, {});
return res.json({ ok: true, message: "all subscriptions removed", remaining: 0 });
}
// Check if the user has a 'subs' object in the database
if (db.get(`user.${userid}.subs.${channelToRemove}`)) {
// If the subscription exists, remove it from the database