summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-09 00:05:03 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-04-09 00:05:03 +1000
commit55271a93f453bd9e5aad3fe26ca4c90915acceec (patch)
tree4f529143e1fb860150409a2e28a8a7928983ad04
parentfeat: news service (diff)
downloadcaelestia-shell-55271a93f453bd9e5aad3fe26ca4c90915acceec.tar.gz
caelestia-shell-55271a93f453bd9e5aad3fe26ca4c90915acceec.tar.bz2
caelestia-shell-55271a93f453bd9e5aad3fe26ca4c90915acceec.zip
updates: fix cache file extension
Use json not txt
-rw-r--r--src/services/updates.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/updates.ts b/src/services/updates.ts
index f8993c0..62a8f65 100644
--- a/src/services/updates.ts
+++ b/src/services/updates.ts
@@ -36,7 +36,7 @@ export default class Updates extends GObject.Object {
return this.instance;
}
- readonly #cachePath = `${CACHE}/updates.txt`;
+ readonly #cachePath = `${CACHE}/updates.json`;
#timeout?: GLib.Source;
#loading = false;