update recording folder generation
This commit is contained in:
parent
36ae31d3a7
commit
04302136f3
|
@ -102,8 +102,6 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
|
|||
_timerProvider.RestartTimers();
|
||||
|
||||
SystemEvents.PowerModeChanged += SystemEvents_PowerModeChanged;
|
||||
|
||||
CreateRecordingFolders();
|
||||
}
|
||||
|
||||
private void OnRecordingFoldersChanged()
|
||||
|
@ -111,7 +109,19 @@ namespace MediaBrowser.Server.Implementations.LiveTv.EmbyTV
|
|||
CreateRecordingFolders();
|
||||
}
|
||||
|
||||
private void CreateRecordingFolders()
|
||||
internal void CreateRecordingFolders()
|
||||
{
|
||||
try
|
||||
{
|
||||
CreateRecordingFoldersInternal();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
_logger.ErrorException("Error creating recording folders", ex);
|
||||
}
|
||||
}
|
||||
|
||||
internal void CreateRecordingFoldersInternal()
|
||||
{
|
||||
var recordingFolders = GetRecordingFolders();
|
||||
|
||||
|
|
|
@ -1126,6 +1126,8 @@ namespace MediaBrowser.Server.Implementations.LiveTv
|
|||
|
||||
private async Task RefreshChannelsInternal(IProgress<double> progress, CancellationToken cancellationToken)
|
||||
{
|
||||
EmbyTV.EmbyTV.Current.CreateRecordingFolders();
|
||||
|
||||
var numComplete = 0;
|
||||
double progressPerService = _services.Count == 0
|
||||
? 0
|
||||
|
|
|
@ -215,9 +215,6 @@
|
|||
<Content Include="dashboard-ui\components\metadataeditor\metadataeditor.template.html">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="dashboard-ui\components\playlisteditor\playlisteditor.js">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="dashboard-ui\devices\ie\ie.css">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
|
@ -935,9 +932,6 @@
|
|||
<Content Include="dashboard-ui\scripts\playlistedit.js">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="dashboard-ui\scripts\playlistmanager.js">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="dashboard-ui\scripts\playlists.js">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
|
|
Loading…
Reference in New Issue
Block a user