fix stdin support
This commit is contained in:
@@ -1,10 +1,16 @@
|
||||
|
||||
5.4.8.1 Beta (not yet released)
|
||||
5.4.8.2 Beta (not yet released)
|
||||
============
|
||||
|
||||
|
||||
|
||||
|
||||
5.4.8.1 Beta
|
||||
============
|
||||
|
||||
- fix stdin support
|
||||
|
||||
|
||||
5.4.8.0
|
||||
=======
|
||||
|
||||
|
||||
@@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("5.4.8.0")]
|
||||
[assembly: AssemblyFileVersion("5.4.8.0")]
|
||||
[assembly: AssemblyVersion("5.4.8.1")]
|
||||
[assembly: AssemblyFileVersion("5.4.8.1")]
|
||||
|
||||
@@ -883,7 +883,7 @@ namespace mpvnet
|
||||
{
|
||||
string arg = i;
|
||||
|
||||
if (arg.StartsWith("-"))
|
||||
if (arg.StartsWith("-") && arg.Length > 1)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user