#6188: Using correct key when removing Redis cache entry.

This commit is contained in:
Piotr Szmyd
2015-12-16 17:05:28 +01:00
parent e72e6fcb1f
commit 83900802b7

View File

@@ -54,7 +54,7 @@ namespace Orchard.Redis.Caching {
} }
public void Remove(string key) { public void Remove(string key) {
Database.KeyDelete(key); Database.KeyDelete(GetLocalizedKey(key));
} }
public void Clear() { public void Clear() {