mirror of
https://github.com/nextcloud/desktop.git
synced 2026-01-14 02:01:28 +00:00
This resolves a crash when opening the settings window in case the ConnectionValidator already reported a Connected status, but is still busy fetching the user info. Added a test to ensure the constructor no longer crashes with this fix. I hope this works fine in CI 🤞 Signed-off-by: Jyrki Gadinger <nilsding@nilsding.org>
18 lines
295 B
C++
18 lines
295 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "foldermantestutils.h"
|
|
|
|
FolderManTestHelper::FolderManTestHelper(QObject *parent)
|
|
: QObject{parent}
|
|
{
|
|
|
|
}
|
|
|
|
FolderManTestHelper::~FolderManTestHelper()
|
|
{
|
|
|
|
}
|