Fix SFTP plugin, m_mounter was not initialized
BUG: 474552
This commit is contained in:
parent
cdcf44efa8
commit
66cf7093fb
1 changed files with 1 additions and 0 deletions
|
@ -25,6 +25,7 @@ K_PLUGIN_CLASS_WITH_JSON(SftpPlugin, "kdeconnect_sftp.json")
|
||||||
SftpPlugin::SftpPlugin(QObject *parent, const QVariantList &args)
|
SftpPlugin::SftpPlugin(QObject *parent, const QVariantList &args)
|
||||||
: KdeConnectPlugin(parent, args)
|
: KdeConnectPlugin(parent, args)
|
||||||
, deviceId(device()->id())
|
, deviceId(device()->id())
|
||||||
|
, m_mounter(nullptr)
|
||||||
{
|
{
|
||||||
addToDolphin();
|
addToDolphin();
|
||||||
qCDebug(KDECONNECT_PLUGIN_SFTP) << "Created device:" << device()->name();
|
qCDebug(KDECONNECT_PLUGIN_SFTP) << "Created device:" << device()->name();
|
||||||
|
|
Loading…
Reference in a new issue