diff --git a/src/Timeline.cpp b/src/Timeline.cpp
index d7377a28..44b1d959 100644
--- a/src/Timeline.cpp
+++ b/src/Timeline.cpp
@@ -725,15 +725,6 @@ std::shared_ptr Timeline::GetFrame(int64_t requested_frame)
return frame;
}
- // Check if previous frame was cached? (if not, assume we are seeking somewhere else on the Timeline, and need
- // to clear all cache (for continuity sake). For example, jumping back to a previous spot can cause issues with audio
- // data where the new jump location doesn't match up with the previously cached audio data.
- std::shared_ptr previous_frame = final_cache->GetFrame(requested_frame - 1);
- if (!previous_frame) {
- // Seeking to new place on timeline (destroy cache)
- ClearAllCache();
- }
-
// Minimum number of frames to process (for performance reasons)
int minimum_frames = OPEN_MP_NUM_PROCESSORS;