diff --git a/Telegram/SourceFiles/boxes/sticker_set_box.cpp b/Telegram/SourceFiles/boxes/sticker_set_box.cpp index 4d57b7524..01c024dab 100644 --- a/Telegram/SourceFiles/boxes/sticker_set_box.cpp +++ b/Telegram/SourceFiles/boxes/sticker_set_box.cpp @@ -190,9 +190,8 @@ void StickerSetBox::shareStickers() { } void StickerSetBox::copyTitle() { - std::move( - _inner->title() - ) | rpl::start_with_next([this](const TextWithEntities &value) { + _inner->title( + ) | rpl::start_with_next([](const TextWithEntities &value) { QGuiApplication::clipboard()->setText(value.text); Ui::show(Box(tr::ktg_stickers_title_copied(tr::now))); }, lifetime());