From 99a63a3cdbdd8cafad612bb2a6c4e153b91ebc40 Mon Sep 17 00:00:00 2001 From: Stephan Date: Mon, 1 Apr 2013 16:35:03 -0200 Subject: [PATCH] fix build --- src/Umbraco.Web/Cache/ContentTypeCacheRefresher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Cache/ContentTypeCacheRefresher.cs b/src/Umbraco.Web/Cache/ContentTypeCacheRefresher.cs index 6fac44e2cb..654d32bab3 100644 --- a/src/Umbraco.Web/Cache/ContentTypeCacheRefresher.cs +++ b/src/Umbraco.Web/Cache/ContentTypeCacheRefresher.cs @@ -215,7 +215,7 @@ namespace Umbraco.Web.Cache // are creating a nasty dependency - but keep it like that for the time being while // SD is cleaning cache refreshers up. - var contentCache = PublishedCachesResolver.Current.Caches.ContentCache as PublishedContentCache; + var contentCache = PublishedContentCacheResolver.Current.ContentCache as PublishedContentCache; if (contentCache != null) contentCache.RoutesCache.Clear(); }