(string message, string wav)
| 562 | private SemaphoreSlim semaphore = new SemaphoreSlim(1, 1); |
| 563 | |
| 564 | private async Task Hooks(string message, string wav) |
| 565 | { |
| 566 | var SoundFilePath = ""; |
| 567 | |
| 568 | return; |
| 569 | var sendWebhookTask = SendWebhook(message); |
| 570 | var Sound = PlaySoundAsync(SoundFilePath); |
| 571 | await Task.WhenAll(sendWebhookTask, Sound); |
| 572 | } |
| 573 | |
| 574 | private async Task PlaySoundAsync(String SoundFilePath) |
| 575 | { |
nothing calls this directly
no outgoing calls
no test coverage detected