From 37f4ca183364e0ee4984994b8719ffdd1ddff645 Mon Sep 17 00:00:00 2001 From: Sergey Ilinykh Date: Sat, 10 Jun 2017 17:17:23 +0500 Subject: [PATCH] Added a workaround for a bug in libtransport/spectrum, which duplicates Psi caps in its presense https://github.com/hanzz/spectrum2/issues/205 --- src/discodlg.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/discodlg.cpp b/src/discodlg.cpp index a86ebdb97..84fdba4c0 100644 --- a/src/discodlg.cpp +++ b/src/discodlg.cpp @@ -485,6 +485,7 @@ void DiscoListItem::autoItemsChildren() const void DiscoListItem::updateInfo() { JT_DiscoInfo *jt = new JT_DiscoInfo(d->pa->client()->rootTask()); + jt->setAllowCache(false); // Workaround for a bug https://github.com/hanzz/spectrum2/issues/205 (invalid caps from transport) connect(jt, SIGNAL(finished()), SLOT(discoInfoFinished())); jt->get(di.jid(), di.node()); jt->go(true);