Update QUALITY_OF_LIFE_IMPROVEMENTS.md

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
This commit is contained in:
tmm22 2025-11-03 12:07:57 +10:00 committed by GitHub
parent 93a790833e
commit c3e7263890
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -823,7 +823,7 @@ func sendToWebhook(_ transcription: Transcription) async throws {
"duration": transcription.duration
]
guard let url = URL(string: settings.url) else {
guard let url = URL(string: settings.url), url.scheme?.lowercased() == "https" else {
throw WebhookError.invalidURL
}