This commit is contained in:
DjDeveloperr 2021-03-19 17:20:46 +05:30
parent fccac82fdc
commit 9023606faa

View file

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