LibMedia: Make PlaybackStream error clearer

This commit is contained in:
Shehab 2026-05-21 07:52:22 +03:00 committed by Gregory Bertilson
parent 817cb7432f
commit c8f9b095ba

View file

@ -15,7 +15,7 @@ NonnullRefPtr<PlaybackStream::CreatePromise> PlaybackStream::create(OutputState,
#endif
{
auto promise = CreatePromise::construct();
promise->reject(Error::from_string_literal("Audio output is not available for this platform"));
promise->reject(Error::from_string_literal("Could not find audio backend on this platform"));
return promise;
}