From 2b246cb8a2beb9685f8bfd66663f239fba2acfd5 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Mon, 2 Jul 2018 09:43:09 +0200 Subject: Add nullptr profile check to createSession --- src/browser.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/browser.cpp') diff --git a/src/browser.cpp b/src/browser.cpp index f6b3805..38c7d85 100644 --- a/src/browser.cpp +++ b/src/browser.cpp @@ -155,6 +155,8 @@ void Browser::createSession(const QJsonObject &object) const QJsonObject subwindow = s.toObject(); const QString profileId = subwindow.value("profile").toString(); WebProfile *profile = ProfileManager::profile(profileId); + if(profile == nullptr) + profile = WebProfile::defaultProfile(); Q_CHECK_PTR(profile); SubWindow *window = nullptr; -- cgit v1.2.1