···202202203203 seenAt?: D
204204205205+ dbUid?: string
206206+ dbId?: number
207207+205208 /*
206209 * If applicable, the name of the Service providing the track (Spotify, Tidal, etc...)
207210 */
+7-1
src/backend/server/api.ts
···262262 // @ts-expect-error TS(2339): Property 'scrobbleSource' does not exist on type '... Remove this comment to see the full error message
263263 scrobbleSource: source,
264264 query: {
265265- upstream = 'false'
265265+ upstream = 'false',
266266+ next: queryNext = 'false',
267267+ ...rest
266268 }
267269 } = req;
268270···278280 return res.status(500).json({message: e.message});
279281 }
280282 } else {
283283+ if(queryNext === 'true') {
284284+ return res.json(await (source as AbstractSource).getRecentPlaysApi(rest));
285285+ }
281286 result = await (source as AbstractSource).getFlatRecentlyDiscoveredPlays();
287287+282288 }
283289 }
284290