mirror of
https://git.sr.ht/~cadence/cloudtube
synced 2026-03-02 02:31:35 +00:00
Fix calls to fetchChannel
Should fix subscribing to channels
This commit is contained in:
parent
6de9abd499
commit
a2dfeb2edc
3 changed files with 3 additions and 3 deletions
|
|
@ -10,7 +10,7 @@ module.exports = [
|
|||
const id = fill[1]
|
||||
const user = getUser(req)
|
||||
const settings = user.getSettingsOrDefaults()
|
||||
const data = await fetchChannel(id, path, settings.instance)
|
||||
const data = await fetchChannel(path, id, settings.instance)
|
||||
const subscribed = user.isSubscribed(id)
|
||||
const instanceOrigin = settings.instance
|
||||
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ module.exports = [
|
|||
const token = user.token
|
||||
|
||||
if (add) {
|
||||
await fetchChannel(ucid, settings.instance)
|
||||
await fetchChannel("channel", ucid, settings.instance)
|
||||
db.prepare(
|
||||
"INSERT INTO Subscriptions (token, ucid) VALUES (?, ?)"
|
||||
).run(token, ucid)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue