From 5293159c06a871e83cda6ebd2868b9d3cffd56f5 Mon Sep 17 00:00:00 2001 From: Craig Wittenberg Date: Sat, 18 Dec 2021 20:05:45 -0800 Subject: [PATCH] Fix https://github.com/luberda-molinet/FFImageLoading/issues/1543. --- source/FFImageLoading.Windows/Cache/LRUCache.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/FFImageLoading.Windows/Cache/LRUCache.cs b/source/FFImageLoading.Windows/Cache/LRUCache.cs index 48120b75a..21f536710 100644 --- a/source/FFImageLoading.Windows/Cache/LRUCache.cs +++ b/source/FFImageLoading.Windows/Cache/LRUCache.cs @@ -143,7 +143,7 @@ public void Remove(TKey key) LinkedListNode> node; if (_cacheMap.TryGetValue(key, out node)) { - _lruList.Remove(node); + this.RemoveNode(node); } }