- July 25, 2010
- 4,004
- 1,427
- Home Country
-
Germany
Hello.
is there a opportunity to download subtitles to a network drive? TvSeries always tells me: "Unable to download subtitle: Not a local episode!"
I took a look into the src (SubtitleRetriever.cs) and found the following passage:
The if returns always false for a network drive or path, but maybe you can expand this passage.
A work around to check if you have permission to write would be to create a file in a try{}catch{} construct.
This would be a big improvement for me because non of my series are locally on my media pc...
best regards
is there a opportunity to download subtitles to a network drive? TvSeries always tells me: "Unable to download subtitle: Not a local episode!"
I took a look into the src (SubtitleRetriever.cs) and found the following passage:
Code:
if (!File.Exists(EpisodeFileName))
{
_errorMessage = "Unable to download subtitle: Not a local episode!";
MPTVSeriesLog.Write(_errorMessage);
return;
}
The if returns always false for a network drive or path, but maybe you can expand this passage.
A work around to check if you have permission to write would be to create a file in a try{}catch{} construct.
This would be a big improvement for me because non of my series are locally on my media pc...
best regards