SendAlbumAsync now sets caption on first media instead of last

This commit is contained in:
Wizou 2023-11-26 23:33:09 +01:00
parent 9209d792a5
commit 35fab21493
4 changed files with 25 additions and 6 deletions

18
.github/dev.yml vendored
View file

@ -34,3 +34,21 @@ steps:
publishPackageMetadata: true
nuGetFeedType: 'external'
publishFeedCredentials: 'nuget.org'
- task: InvokeRESTAPI@1
inputs:
connectionType: 'connectedServiceName'
serviceConnection: 'Telegram Deploy Notice'
method: 'POST'
body: |
{
"status": "success",
"complete": true,
"message": "{
\"commitId\": \"$(Build.SourceVersion)\",
\"buildNumber\": \"$(Build.BuildNumber)\",
\"teamProjectName\": \"$(System.TeamProject)\",
\"commitMessage\": \"$(Build.SourceVersionMessage)\"
}"
}
waitForCompletion: 'false'