mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-07-26 23:43:06 +02:00
Fix build with new MSVC.
This commit is contained in:
parent
e0e69ce740
commit
126749f04c
1 changed files with 2 additions and 2 deletions
|
@ -390,8 +390,8 @@ void EditCaptionBox(
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
auto text = TextWithEntities{
|
auto text = TextWithEntities{
|
||||||
base::take(textWithTags.text),
|
std::move(textWithTags.text),
|
||||||
ConvertTextTagsToEntities(base::take(textWithTags.tags)),
|
ConvertTextTagsToEntities(std::move(textWithTags.tags)),
|
||||||
};
|
};
|
||||||
if (item->isUploading()) {
|
if (item->isUploading()) {
|
||||||
item->setText(std::move(text));
|
item->setText(std::move(text));
|
||||||
|
|
Loading…
Add table
Reference in a new issue