fixing album sync on synology

This commit is contained in:
Marek Maslowski
2026-04-05 00:30:14 +02:00
parent f225f45f50
commit a038dbd8da

View File

@@ -74,7 +74,7 @@ router.post('/trips/:tripId/album-links/:linkId/sync', authenticate, async (req:
const { tripId, linkId } = req.params;
const sid = req.headers['x-socket-id'] as string;
handleServiceResult(res, await syncSynologyAlbumLink(authReq.user.id, tripId, sid, linkId));
handleServiceResult(res, await syncSynologyAlbumLink(authReq.user.id, tripId, linkId, sid));
});
router.post('/search', authenticate, async (req: Request, res: Response) => {