update components

This commit is contained in:
Luke Pulverenti 2015-08-07 10:21:29 -04:00
parent 96346fc88c
commit a59f146965
3 changed files with 7 additions and 4 deletions

View file

@ -64,9 +64,7 @@ namespace MediaBrowser.Model.Configuration
EnableAutoUpdate = true;
LogFileRetentionDays = 3;
#if (DEBUG)
EnableDebugLevelLogging = true;
#endif
}
}
}

View file

@ -113,8 +113,6 @@ namespace MediaBrowser.Providers.Music
var path = GetArtistInfoPath(_config.ApplicationPaths, musicBrainzId);
Directory.CreateDirectory(Path.GetDirectoryName(path));
using (var response = await _httpClient.Get(new HttpRequestOptions
{
Url = url,
@ -123,6 +121,8 @@ namespace MediaBrowser.Providers.Music
}).ConfigureAwait(false))
{
Directory.CreateDirectory(Path.GetDirectoryName(path));
using (var xmlFileStream = _fileSystem.GetFileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read, true))
{
await response.CopyToAsync(xmlFileStream).ConfigureAwait(false);

View file

@ -154,6 +154,11 @@ namespace MediaBrowser.Providers.Music
result.HasMetadata = true;
}
if (!string.IsNullOrEmpty(releaseId) || !string.IsNullOrEmpty(releaseGroupId))
{
result.HasMetadata = true;
}
if (result.HasMetadata)
{
if (!string.IsNullOrEmpty(releaseId))