Skip to content

Commit

Permalink
close CacheStore in CacheManager.dispose and cancel internal timer
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwynZN authored and martijn00 committed Jul 31, 2024
1 parent 08e671d commit af72267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion flutter_cache_manager/lib/src/cache_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,6 @@ class CacheManager implements BaseCacheManager {
/// Closes the cache database
@override
Future<void> dispose() async {
await _config.repo.close();
await _store.close();
}
}
1 change: 1 addition & 0 deletions flutter_cache_manager/lib/src/cache_store.dart
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ class CacheStore {
}

Future<void> dispose() async {
_scheduledCleanup?.cancel();
final provider = await _cacheInfoRepository;
await provider.close();
}
Expand Down

0 comments on commit af72267

Please sign in to comment.