fix: exclude current podcast episode from related episodes query

This commit is contained in:
Hossein Mehrabi 2023-08-18 14:39:18 +03:30
parent d119c18606
commit 88099a0442
No known key found for this signature in database
GPG Key ID: 45C04964191AFAA1
1 changed files with 9 additions and 0 deletions

View File

@ -499,6 +499,15 @@ export class UnbodyService {
} as GetObjectsGoogleDocWhereInpObj,
]
: []),
...(nearObject
? [
{
path: ['id'],
operator: 'NotEqual',
valueString: nearObject,
} as GetObjectsGoogleDocWhereInpObj,
]
: []),
...(filter ? [filter] : []),
],
},