mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fix: Crash on MS Edge browser ext connection (#1852)
This commit is contained in:
parent
36dd640cd9
commit
b52d15b9b4
|
@ -187,7 +187,9 @@ void AttachedWindow::attachToHwnd(void *_attachedPtr)
|
|||
if (!qfilename.endsWith("chrome.exe") &&
|
||||
!qfilename.endsWith("firefox.exe") &&
|
||||
!qfilename.endsWith("vivaldi.exe") &&
|
||||
!qfilename.endsWith("opera.exe"))
|
||||
!qfilename.endsWith("opera.exe") &&
|
||||
!qfilename.endsWith("msedge.exe"))
|
||||
|
||||
{
|
||||
qDebug() << "NM Illegal caller" << qfilename;
|
||||
this->timer_.stop();
|
||||
|
|
Loading…
Reference in a new issue