From 7be951d07e76144517e5095b566d11f72398f6da Mon Sep 17 00:00:00 2001 From: jx Date: Mon, 8 May 2023 13:58:23 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DList=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE=E8=BF=94=E5=9B=9E=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AListSdkSharp/AListSdkSharp.csproj | 2 +- AListSdkSharp/Api/Fs.cs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/AListSdkSharp/AListSdkSharp.csproj b/AListSdkSharp/AListSdkSharp.csproj index 0d4f380..5951a78 100644 --- a/AListSdkSharp/AListSdkSharp.csproj +++ b/AListSdkSharp/AListSdkSharp.csproj @@ -6,7 +6,7 @@ AList .Net Sdk https://github.com/j4587698/AListSdkSharp https://github.com/j4587698/AListSdkSharp - 1.0.0 + 1.0.1 diff --git a/AListSdkSharp/Api/Fs.cs b/AListSdkSharp/Api/Fs.cs index 0a1690f..f6cce5f 100644 --- a/AListSdkSharp/Api/Fs.cs +++ b/AListSdkSharp/Api/Fs.cs @@ -22,8 +22,7 @@ public static class Fs /// public static async Task List(string baseUrl, string token, ListInVo listInVo) { - var res = await $"{baseUrl}/api/fs/list".WithHeaders(new {Authorization = token}).PostJsonAsync(listInVo).ReceiveJson(); - return null; + return await $"{baseUrl}/api/fs/list".WithHeaders(new {Authorization = token}).PostJsonAsync(listInVo).ReceiveJson(); } ///