aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/ApiEntryPoint.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-08 21:15:31 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-09-08 21:15:31 -0400
commita2dc5e090bac15ee2dd7c83281aa9fada1f74734 (patch)
tree5f6da5aa9c9faed8a4c0ff05d504043adad3efc3 /MediaBrowser.Api/ApiEntryPoint.cs
parent09bffa1b560f2d9e43735f3c6de881e17b2c245f (diff)
update translations
Diffstat (limited to 'MediaBrowser.Api/ApiEntryPoint.cs')
-rw-r--r--MediaBrowser.Api/ApiEntryPoint.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs
index b49fbce48..b0b7f8daf 100644
--- a/MediaBrowser.Api/ApiEntryPoint.cs
+++ b/MediaBrowser.Api/ApiEntryPoint.cs
@@ -458,6 +458,14 @@ namespace MediaBrowser.Api
DeleteHlsPartialStreamFiles(path);
}
}
+ catch (DirectoryNotFoundException)
+ {
+
+ }
+ catch (FileNotFoundException)
+ {
+
+ }
catch (IOException ex)
{
Logger.ErrorException("Error deleting partial stream file(s) {0}", ex, path);
@@ -501,6 +509,14 @@ namespace MediaBrowser.Api
Logger.Info("Deleting HLS file {0}", file);
File.Delete(file);
}
+ catch (DirectoryNotFoundException)
+ {
+
+ }
+ catch (FileNotFoundException)
+ {
+
+ }
catch (IOException ex)
{
e = ex;