diff --git a/SlackNet/WebApi/FilesApi.cs b/SlackNet/WebApi/FilesApi.cs index 36d8b82..c691cbe 100644 --- a/SlackNet/WebApi/FilesApi.cs +++ b/SlackNet/WebApi/FilesApi.cs @@ -398,7 +398,7 @@ public async Task> Upload(IEnumerable f return new ExternalFileReference { Id = uploadUrlResponse.FileId, Title = file.Title }; })).ConfigureAwait(false); - return await CompleteUploadExternal(fileReferences, channelId, threadTs, initialComment, cancellationToken).ConfigureAwait(false); + return await CompleteUploadExternal(fileReferences, channelId, initialComment, threadTs, cancellationToken).ConfigureAwait(false); } public Task GetUploadUrlExternal( @@ -419,8 +419,8 @@ public Task GetUploadUrlExternal( public async Task> CompleteUploadExternal( IEnumerable files, string channelId = null, - string threadTs = null, string initialComment = null, + string threadTs = null, CancellationToken cancellationToken = default ) => (await client.Post("files.completeUploadExternal", new Args