fix: exclude current podcast episode from related episodes query
This commit is contained in:
parent
d119c18606
commit
88099a0442
|
@ -499,6 +499,15 @@ export class UnbodyService {
|
||||||
} as GetObjectsGoogleDocWhereInpObj,
|
} as GetObjectsGoogleDocWhereInpObj,
|
||||||
]
|
]
|
||||||
: []),
|
: []),
|
||||||
|
...(nearObject
|
||||||
|
? [
|
||||||
|
{
|
||||||
|
path: ['id'],
|
||||||
|
operator: 'NotEqual',
|
||||||
|
valueString: nearObject,
|
||||||
|
} as GetObjectsGoogleDocWhereInpObj,
|
||||||
|
]
|
||||||
|
: []),
|
||||||
...(filter ? [filter] : []),
|
...(filter ? [filter] : []),
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue