Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 20b9e09

Browse files
committed
Version 2.3.1.1
1 parent 2a64299 commit 20b9e09

File tree

4 files changed

+92
-7
lines changed

4 files changed

+92
-7
lines changed

Api/API.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@
55
<AssemblyName>KoenZomers.OneDrive.Api</AssemblyName>
66
<SignAssembly>true</SignAssembly>
77
<AssemblyOriginatorKeyFile>KoenZomers.OneDrive.Api.snk</AssemblyOriginatorKeyFile>
8-
<Version>2.3.1.0</Version>
8+
<Version>2.3.1.1</Version>
99
<Authors>Koen Zomers</Authors>
1010
<Company>Koen Zomers</Company>
1111
<Description>API in .NET Standard 2.0, .NET Framework 4.5.2, .NET Framework 4.7.2 and .NET Core 2.0 to communicate with OneDrive Personal and OneDrive for Business</Description>
1212
<PackageProjectUrl>https://github.com/KoenZomers/OneDriveAPI</PackageProjectUrl>
1313
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
14-
<PackageReleaseNotes>- Merged [PR 20](https://github.com/KoenZomers/OneDriveAPI/pull/20) to allow for providing a client secret with the OneDrive Graph API</PackageReleaseNotes>
14+
<PackageReleaseNotes>- Fixed bug in using copy [Issue 24](https://github.com/KoenZomers/OneDriveAPI/issues/24)</PackageReleaseNotes>
1515
<PackageLicenseUrl>https://github.com/KoenZomers/OneDriveAPI/blob/master/LICENSE.md</PackageLicenseUrl>
1616
<Copyright>Koen Zomers</Copyright>
1717
<RootNamespace>KoenZomers.OneDrive.Api</RootNamespace>
18-
<AssemblyVersion>2.3.1.0</AssemblyVersion>
19-
<FileVersion>2.3.1.0</FileVersion>
18+
<AssemblyVersion>2.3.1.1</AssemblyVersion>
19+
<FileVersion>2.3.1.1</FileVersion>
2020
</PropertyGroup>
2121

2222
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">

Api/KoenZomers.OneDrive.Api.xml

Lines changed: 83 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Api/OneDriveGraphApi.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -779,6 +779,7 @@ protected override async Task<bool> CopyItemInternal(OneDriveItem oneDriveSource
779779
// Item will be copied frp, the current user its drive
780780
completeUrl = string.Concat("drive/items/", oneDriveSource.Id, "/copy");
781781
}
782+
completeUrl = ConstructCompleteUrl(completeUrl);
782783

783784
// Construct the OneDriveParentItemReference entity with the item to be copied details
784785
var requestBody = new OneDriveParentItemReference

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ https://www.nuget.org/packages/KoenZomers.OneDrive.Api
6969

7070
## Version History
7171

72+
2.3.1.1 - November 16, 2020
73+
74+
- Fixed bug in using copy [Issue 24](https://github.com/KoenZomers/OneDriveAPI/issues/24). Thanks to [Eirielson Rodrigues](https://github.com/eirielson) for reporting this!
75+
7276
2.3.1.0 - October 27, 2019
7377

7478
- Merged [PR 20](https://github.com/KoenZomers/OneDriveAPI/pull/20) to allow for providing a client secret with the OneDrive Graph API

0 commit comments

Comments
 (0)