From 407640b35c6e599f82f6206d0b058deb61282efa Mon Sep 17 00:00:00 2001 From: Laurent Date: Sun, 16 Feb 2025 11:50:19 +0100 Subject: [PATCH] add more resilience for calls --- LeStorage/ApiCallCollection.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/LeStorage/ApiCallCollection.swift b/LeStorage/ApiCallCollection.swift index f87d2c0..a917aea 100644 --- a/LeStorage/ApiCallCollection.swift +++ b/LeStorage/ApiCallCollection.swift @@ -236,6 +236,7 @@ actor ApiCallCollection: SomeCallCollection { case (.put, .delete): call = try self._createCall(instance, method: .delete) default: + call = try self._createCall(instance, method: method) StoreCenter.main.log(message: "case \(currentHTTPMethod) / \(method) should not happen") } } else {