From b512a0639d4f71c374bd322e7694e851488bfd0d Mon Sep 17 00:00:00 2001 From: "minecraftchest1@outlook.com" Date: Tue, 29 Apr 2025 16:15:57 -0500 Subject: [PATCH] Pun updateCache on startup. --- vcard-http.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/vcard-http.py b/vcard-http.py index 2c2e776..0196330 100644 --- a/vcard-http.py +++ b/vcard-http.py @@ -56,4 +56,6 @@ def index(contactName): def cache(): updateCache() with open(contactsFile, "r") as f: - return f.read() \ No newline at end of file + return f.read() + +updateCache() \ No newline at end of file