diff options
| author | Linus Jahn <lnj@kaidan.im> | 2022-12-28 20:03:49 +0100 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2022-12-28 20:06:39 +0100 |
| commit | 4f0a029070091d11ab3d2e17e30e39b4476105e5 (patch) | |
| tree | a94a14672a8048f88f2fd1b69917b76a14b645a1 /src/client/QXmppUserTuneManager.cpp | |
| parent | 7b43ba945f195ca559207f6d9824261db8fee46a (diff) | |
| download | qxmpp-4f0a029070091d11ab3d2e17e30e39b4476105e5.tar.gz | |
PubSubManager: Add 'own' to PEP function names
This makes it clear that the functions use the own PEP nodes. This is
clear in some cases (createPepNode()), but in others not so clear
(requestPepItem()). To keep it consistent all PEP functions get an
'own' now.
Closes #520.
Diffstat (limited to 'src/client/QXmppUserTuneManager.cpp')
| -rw-r--r-- | src/client/QXmppUserTuneManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/QXmppUserTuneManager.cpp b/src/client/QXmppUserTuneManager.cpp index f9b527a0..e0023416 100644 --- a/src/client/QXmppUserTuneManager.cpp +++ b/src/client/QXmppUserTuneManager.cpp @@ -91,7 +91,7 @@ auto QXmppUserTuneManager::request(const QString &jid) auto QXmppUserTuneManager::publish(const QXmppTuneItem &item) -> QFuture<PublishResult> { - return pubSub(client())->publishPepItem(ns_tune, item); + return pubSub(client())->publishOwnPepItem(ns_tune, item); } /// \cond |
