diff --git a/PlexATV/Classes/PlexPreviewAsset.m b/PlexATV/Classes/PlexPreviewAsset.m index 6f8c36c..93a9d14 100644 --- a/PlexATV/Classes/PlexPreviewAsset.m +++ b/PlexATV/Classes/PlexPreviewAsset.m @@ -245,7 +245,10 @@ - (BOOL)hasVideoContent { } - (id)imageProxy { - BRURLImageProxy *aImageProxy = [BRURLImageProxy proxyWithURL:self.coverArtRealURL]; + NSURLRequest *request = [pmo.request urlRequestWithAuthenticationHeadersForURL:self.coverArtRealURL]; + + NSDictionary *headerFields = [request allHTTPHeaderFields]; + BRURLImageProxy *aImageProxy = [BRURLImageProxy proxyWithURL:[request URL] headerFields:headerFields]; //aImageProxy.writeToDisk = YES; return aImageProxy; }