We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e7fc6e commit c303009Copy full SHA for c303009
flutter_cache_manager/lib/src/cache_store.dart
@@ -84,6 +84,9 @@ class CacheStore {
84
}
85
completer.complete(cacheObject);
86
_futureCache.remove(key);
87
+ }).catchError((err) {
88
+ completer.completeError(err);
89
+ _futureCache.remove(key);
90
});
91
_futureCache[key] = completer.future;
92
0 commit comments