Skip to content

Commit

Permalink
#16
Browse files Browse the repository at this point in the history
+ Fix upload files with popup file chooser
+ Update to v1.3.3.1
  • Loading branch information
trannamtrung1st committed Jul 26, 2021
1 parent af1c7e5 commit c9106ec
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<RepositoryUrl>https://github.com/trannamtrung1st/elFinder.Net.Core</RepositoryUrl>
<RepositoryType>OSS</RepositoryType>
<PackageTags>elFinder, connector, file-manager, driver, plugins</PackageTags>
<Version>1.3.3</Version>
<Version>1.3.3.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<IsPackable>true</IsPackable>
<Description>This package enables ASP.NET Core 2.2 projects to easily integrate the elFinder.Net.Core connector. See the example project on Github for usage detail.</Description>
<PackageIcon>logo.png</PackageIcon>
<Version>1.3.3</Version>
<Version>1.3.3.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions elFinder.Net.Core/elFinder.Net.Core/Connector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -546,8 +546,8 @@ protected virtual async Task<ConnectorResult> ProcessCoreAsync(ConnectorCommand
throw new ConnectionAbortedException();
}
else if (isChunking && !isChunkMerge
&& (uploadCmd.Upload.Count() != 1 || uploadCmd.UploadPathInfos.Count() != 1
|| uploadCmd.Upload.Single().Length > uploadCmd.RangeInfo.TotalBytes))
&& (uploadCmd.Upload.Count() != 1
|| uploadCmd.Upload.Single().Length > uploadCmd.RangeInfo.TotalBytes))
{
throw new CommandParamsException(ConnectorCommand.Cmd_Upload);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
See the example project on Github for usage detail.
</Description>
<PackageIcon>logo.png</PackageIcon>
<Version>1.3.3</Version>
<Version>1.3.3.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<IsPackable>true</IsPackable>
<Description>elFinder.Net.Core Local File System driver.</Description>
<PackageIcon>logo.png</PackageIcon>
<Version>1.3.3</Version>
<Version>1.3.3.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit c9106ec

Please sign in to comment.