disable series xml saving for now

This commit is contained in:
Luke Pulverenti 2013-06-16 21:49:21 -04:00
parent 3a0b23f527
commit b4a756780e

View file

@ -291,10 +291,10 @@ namespace MediaBrowser.Providers.TV
}
if (ConfigurationManager.Configuration.SaveLocalMeta)
{
var ms = new MemoryStream();
seriesDoc.Save(ms);
//var ms = new MemoryStream();
//seriesDoc.Save(ms);
await _providerManager.SaveToLibraryFilesystem(series, Path.Combine(series.MetaLocation, LocalMetaFileName), ms, cancellationToken).ConfigureAwait(false);
//await _providerManager.SaveToLibraryFilesystem(series, Path.Combine(series.MetaLocation, LocalMetaFileName), ms, cancellationToken).ConfigureAwait(false);
}
}
}