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 committed May 30, 2023
1 parent 5fc7752 commit fd2f04f
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 @@ -275,6 +275,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 @@ -187,6 +187,7 @@ class CacheStore {
}

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

0 comments on commit fd2f04f

Please sign in to comment.