Download raw body.
Is chromium-149.0.7827.196 crashing for you guys?
On 28/07/26 23:30 +0200, Kirill A. Korinsky wrote:
> On Tue, 28 Jul 2026 22:54:13 +0200,
> Mikolaj Kucharski <mikolaj@kucharski.name> wrote:
> >
> > Hi.
> >
> > Vinted is still crashing Chromium for me. Would it be possible to
> > bring in changes to mitigate the problem?
> >
>
> You may add --disable-features=WebSerialAPI as command line option to
> disable that crash.
Please try this patch only.
Index: services/device/device_service.cc
--- services/device/device_service.cc.orig
+++ services/device/device_service.cc
@@ -6,6 +6,8 @@
#include <utility>
+#include "base/notimplemented.h"
+
#include "base/functional/bind.h"
#include "base/memory/weak_ptr.h"
#include "base/task/single_thread_task_runner.h"
@@ -310,7 +312,7 @@ void DeviceService::BindSerialPortManager(
serial_port_manager_.AsyncCall(&SerialPortManagerImpl::Bind, FROM_HERE)
.WithArgs(std::move(receiver));
#else // defined(IS_SERIAL_ENABLED_PLATFORM)
- NOTREACHED() << "Serial devices not supported on this platform.";
+ NOTIMPLEMENTED() << "Serial devices not supported on this platform.";
#endif // defined(IS_SERIAL_ENABLED_PLATFORM)
}
Is chromium-149.0.7827.196 crashing for you guys?