mirror of
https://github.com/hexastack/hexabot
synced 2025-04-05 13:35:20 +00:00
Merge pull request #625 from TheCoderAdi/fix-issue-614-findOneByForeignId
fix: update return type of findOneByForeignId to include null
This commit is contained in:
commit
6c5c43027d
@ -123,12 +123,12 @@ export class SubscriberRepository extends BaseRepository<
|
||||
*
|
||||
* @param id - The foreign ID of the subscriber.
|
||||
*
|
||||
* @returns The found subscriber entity.
|
||||
* @returns The found subscriber entity, or `null` if no subscriber is found.
|
||||
*/
|
||||
async findOneByForeignId(id: string): Promise<Subscriber> {
|
||||
async findOneByForeignId(id: string): Promise<Subscriber | null> {
|
||||
const query = this.findByForeignIdQuery(id);
|
||||
const [result] = await this.execute(query, Subscriber);
|
||||
return result;
|
||||
return result || null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user