From a716e931126f0d43c50cf8697a1afff08593dae5 Mon Sep 17 00:00:00 2001 From: Rasmus Karlsson Date: Tue, 3 Jul 2018 18:09:07 +0000 Subject: [PATCH] Remove pessemistic move --- src/providers/twitch/Pubsub.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/twitch/Pubsub.cpp b/src/providers/twitch/Pubsub.cpp index 1302fb78e..c99fa6cbc 100644 --- a/src/providers/twitch/Pubsub.cpp +++ b/src/providers/twitch/Pubsub.cpp @@ -491,7 +491,7 @@ void PubSub::listenToWhispers(std::shared_ptr account) std::vector topics({"whispers." + userID}); - this->listen(std::move(createListenMessage(topics, account))); + this->listen(createListenMessage(topics, account)); if (ec) { Log("Unable to send message to websocket server: {}", ec.message());