refactor: changing deviceId prefix from overseerr to jellyseerr

This commit is contained in:
Hermanus Engelbrecht
2025-03-01 16:32:26 +01:00
parent 527bb1c2da
commit 724727483c

View File

@@ -271,7 +271,7 @@ authRoutes.post('/jellyfin', async (req, res, next) => {
const deviceId =
user?.jellyfinDeviceId ??
Buffer.from(`BOT_overseerr_${body.username ?? ''}`).toString('base64');
Buffer.from(`BOT_jellyseerr_${body.username ?? ''}`).toString('base64');
// First we need to attempt to log the user in to jellyfin
const jellyfinserver = new JellyfinAPI(hostname ?? '', undefined, deviceId);