Prevent crashing on the PulseAudioPlayingDetector

Signed-off-by: Alexis Maiquez <almamu@almamu.com>
This commit is contained in:
Alexis Maiquez 2023-04-22 14:02:25 +02:00
parent 7c39db8b4b
commit 21bcb7008f

View File

@ -18,7 +18,7 @@ namespace WallpaperEngine::Audio::Drivers::Detectors
// get processid
const char* value = pa_proplist_gets (info->proplist, PA_PROP_APPLICATION_PROCESS_ID);
if (atoi (value) != getpid () && pa_cvolume_avg (&info->volume) != PA_VOLUME_MUTED)
if (value && atoi (value) != getpid () && pa_cvolume_avg (&info->volume) != PA_VOLUME_MUTED)
detector->setIsPlaying (true);
}