We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c63f3e commit 1b16718Copy full SHA for 1b16718
1 file changed
src/controllers/mq/mq.ts
@@ -31,11 +31,15 @@ export class MQController {
31
32
try {
33
const mqConstantMessageOptions = MQ_QUEUES['rss-on-demand'];
34
- await mqRSSAdd(activeMQArtemisService, {
35
- ...mqConstantMessageOptions,
36
- feedUrl: finalDto.url,
37
- podcast_index_id: finalDto.podcast_index_id
38
- });
+ await mqRSSAdd(
+ activeMQArtemisService,
+ {
+ ...mqConstantMessageOptions,
+ feedUrl: finalDto.url,
39
+ podcast_index_id: finalDto.podcast_index_id,
40
+ },
41
+ { forceParse: true }
42
+ );
43
res.status(201).json({ message: "Feed added to on-demand queue successfully." });
44
} catch (err) {
45
handleGenericErrorResponse(res, err);
0 commit comments