diff --git a/app/src/main/java/io/xpipe/app/storage/DataStorage.java b/app/src/main/java/io/xpipe/app/storage/DataStorage.java index 5191ede98..0dfae04bc 100644 --- a/app/src/main/java/io/xpipe/app/storage/DataStorage.java +++ b/app/src/main/java/io/xpipe/app/storage/DataStorage.java @@ -91,7 +91,10 @@ public abstract class DataStorage { } INSTANCE.dispose(); - INSTANCE = null; + + // We want to keep the storage for all dependent instances + // that might still refer to it after the reset + // INSTANCE = null; } public static DataStorage get() {