Correction sur la mise en cache des data ref et

la vérification "AlwaysLogin"
This commit is contained in:
Sébastien André
2021-05-29 00:48:14 +02:00
parent 0027e205d0
commit 01e5417cc5
3 changed files with 28 additions and 20 deletions

View File

@@ -15,7 +15,7 @@ export class ServiceCacheApi {
}
public get<T>(key: CacheApiKey, callToApi: Observable<T>) : Observable<T> {
console.log(`Get cache : ${CacheApiKey[key]}`);
console.log(`Get/push cache : ${CacheApiKey[key]}`);
const cached = this.cache.get(key);
if (cached) {