From d0d95b8f9077cee7b06049dc956815739016ca53 Mon Sep 17 00:00:00 2001 From: ClemensFischer Date: Mon, 24 Feb 2025 22:30:57 +0100 Subject: [PATCH] Update SQLiteCache.cs --- Caches/SQLiteCache/SQLiteCache.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Caches/SQLiteCache/SQLiteCache.cs b/Caches/SQLiteCache/SQLiteCache.cs index 19e6c888..dd0a37f6 100644 --- a/Caches/SQLiteCache/SQLiteCache.cs +++ b/Caches/SQLiteCache/SQLiteCache.cs @@ -37,7 +37,7 @@ namespace MapControl.Caching path = Path.Combine(path, "TileCache.sqlite"); } - connection = new SQLiteConnection("Data Source=" + Path.GetFullPath(path)); + connection = new SQLiteConnection("Data Source=" + path); connection.Open(); using (var command = new SQLiteCommand("pragma journal_mode=wal", connection))