This commit is contained in:
Jonathan Jenne 2023-12-04 13:56:00 +01:00
parent 55b2865387
commit d966e88583
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web"> <Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup> <PropertyGroup>
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup> </PropertyGroup>

View File

@ -44,7 +44,7 @@
body: JSON.stringify({}), body: JSON.stringify({}),
} }
console.debug('OpenDocument/Calling url: ' + url) console.debug('OpenDocument/Calling url: ' + url)
return fetch(url, this.withCSRFToken(options)) return fetch(url, this.withCSRFToken(options))
.then(this.handleResponse) .then(this.handleResponse)
.then((res) => { .then((res) => {