diff --git a/src/webui/prefjson.cpp b/src/webui/prefjson.cpp
index c82fa782d..bf206df39 100644
--- a/src/webui/prefjson.cpp
+++ b/src/webui/prefjson.cpp
@@ -396,4 +396,3 @@ void prefjson::setPreferences(const QString& json)
// Save preferences
pref->apply();
}
-
diff --git a/src/webui/webapplication.cpp b/src/webui/webapplication.cpp
index 16916b6eb..3000c3464 100644
--- a/src/webui/webapplication.cpp
+++ b/src/webui/webapplication.cpp
@@ -39,6 +39,7 @@
#include "core/preferences.h"
#include "btjson.h"
#include "prefjson.h"
+#include "jsonutils.h"
#include "core/bittorrent/session.h"
#include "core/bittorrent/trackerentry.h"
#include "core/bittorrent/torrentinfo.h"
@@ -677,8 +678,9 @@ void WebApplication::action_command_setLabel()
if( m.contains("value") ) {
QString label = m["value"].toString();
if (!hash.isEmpty()) {
- QTorrentHandle h = QBtSession::instance()->getTorrentHandle(hash);
- QBtSession::instance()->setLabel(h, label);
+ BitTorrent::TorrentHandle *const torrent = BitTorrent::Session::instance()->findTorrent(hash);
+ if (torrent)
+ torrent->setLabel(label);
}
}
}
diff --git a/src/webui/webui.qrc b/src/webui/webui.qrc
index c77d04bdc..407b6b05f 100644
--- a/src/webui/webui.qrc
+++ b/src/webui/webui.qrc
@@ -27,6 +27,7 @@