Skip to content

Commit

Permalink
fix: check broadcast binaries without case sensitivity (#5260)
Browse files Browse the repository at this point in the history
  • Loading branch information
iProdigy authored Mar 24, 2024
1 parent ed20e71 commit ca69172
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@
- Bugfix: Fixed split header tooltips showing in the wrong position on Windows. (#5230)
- Bugfix: Fixed split header tooltips appearing too tall. (#5232)
- Bugfix: Fixed past messages not showing in the search popup after adding a channel. (#5248)
- Bugfix: Detect when OBS is running on MacOS. (#5260)
- Dev: Run miniaudio in a separate thread, and simplify it to not manage the device ourselves. There's a chance the simplification is a bad idea. (#4978)
- Dev: Change clang-format from v14 to v16. (#4929)
- Dev: Fixed UTF16 encoding of `modes` file for the installer. (#4791)
Expand Down
2 changes: 1 addition & 1 deletion src/singletons/StreamerMode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ bool isBroadcasterSoftwareActive()
{
#if defined(Q_OS_LINUX) || defined(Q_OS_MACOS)
QProcess p;
p.start("pgrep", {"-x", broadcastingBinaries().join("|")},
p.start("pgrep", {"-xi", broadcastingBinaries().join("|")},
QIODevice::NotOpen);

if (p.waitForFinished(1000) && p.exitStatus() == QProcess::NormalExit)
Expand Down

0 comments on commit ca69172

Please sign in to comment.