This commit is contained in:
DjDeveloperr 2021-03-19 17:20:46 +05:30
parent fccac82fdc
commit 9023606faa
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ export class BaseChildManager<T, T2> {
}
async fetch(...args: unknown[]): Promise<T2 | undefined> {
return undefined
return this.parent.fetch(...args)
}
/** Try to get value from cache, if not found then fetch */