From 191f1344db61e96acd25d3a14f316b6e9f373013 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Thu, 10 Jul 2025 17:02:31 -0400 Subject: [PATCH] Starts diskcache together with video cache --- .../src/main/java/com/vitorpamplona/amethyst/Amethyst.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt index fc3031dba..bf885532f 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/Amethyst.kt @@ -154,7 +154,10 @@ class Amethyst : Application() { } // initializes diskcache on an IO thread. - applicationIOScope.launch { videoCache } + applicationIOScope.launch { + diskCache + videoCache + } // registers to receive events pokeyReceiver.register(this)