fix(scrolling): remove custom scrolling behaviour

This commit is contained in:
Jagandeep Brar
2022-08-31 22:29:01 -04:00
parent b963ddf401
commit 864082fd40
5 changed files with 18 additions and 32 deletions

View File

@@ -80,7 +80,7 @@ class OverseerrState extends LunaModuleState {
bool exists = await _movieCache.contains(id);
if (force || !exists) {
await _movieCache.put(id, api!.getMovie(id: movieId));
await _movieCache.put(id, api!.getMovie(movieId));
}
}
notifyListeners();
@@ -92,7 +92,7 @@ class OverseerrState extends LunaModuleState {
bool exists = await _seriesCache.contains(id);
if (force || !exists) {
await _seriesCache.put(id, api!.getSeries(id: seriesId));
await _seriesCache.put(id, api!.getSeries(seriesId));
}
}
notifyListeners();