commit 55e87bbae9914c05f9c947eb289deb4541796b0b parent c4d03ff0b622a891dbf36d64a9627d0af742260c Author: Marc Stibane <marc@taler.net> Date: Thu, 10 Apr 2025 18:32:35 +0200 Use ephemeral URLsession to avoid Taler data in Cache.db Diffstat:
| M | TalerWallet1/Quickjs/quickjs.swift | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/TalerWallet1/Quickjs/quickjs.swift b/TalerWallet1/Quickjs/quickjs.swift @@ -57,7 +57,7 @@ public class Quickjs { // acts as singleton, since only one instance ever e private var requests: [Int32: QuickDataTask] = [:] private lazy var urlSession: URLSession = { - return URLSession(configuration: .default) + return URLSession(configuration: .ephemeral) // we don't want the filesystem cache - keep it in RAM }() public init() {