update components
This commit is contained in:
parent
96346fc88c
commit
a59f146965
|
@ -64,9 +64,7 @@ namespace MediaBrowser.Model.Configuration
|
|||
EnableAutoUpdate = true;
|
||||
LogFileRetentionDays = 3;
|
||||
|
||||
#if (DEBUG)
|
||||
EnableDebugLevelLogging = true;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue
Block a user