mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2026-07-25 06:54:43 +00:00
Fix sending of saved GIFs.
This commit is contained in:
@@ -363,11 +363,9 @@ void GifsListWidget::selectInlineResult(int row, int column) {
|
||||
} else if (document->loading()) {
|
||||
document->cancel();
|
||||
} else {
|
||||
DocumentOpenClickHandler::Open(
|
||||
document->save(
|
||||
document->stickerOrGifOrigin(),
|
||||
document,
|
||||
nullptr,
|
||||
ActionOnLoadNone);
|
||||
QString());
|
||||
}
|
||||
} else if (const auto inlineResult = item->getResult()) {
|
||||
if (inlineResult->onChoose(item)) {
|
||||
|
||||
@@ -850,7 +850,7 @@ void DocumentData::save(
|
||||
setLocation(FileLocation(toFile));
|
||||
Local::writeFileLocation(mediaKey(), FileLocation(toFile));
|
||||
} else if (l.accessEnable()) {
|
||||
auto alreadyName = l.name();
|
||||
const auto &alreadyName = l.name();
|
||||
if (alreadyName != toFile) {
|
||||
QFile(toFile).remove();
|
||||
QFile(alreadyName).copy(toFile);
|
||||
|
||||
@@ -265,11 +265,9 @@ bool Result::onChoose(Layout::ItemBase *layout) {
|
||||
} else if (_document->loading()) {
|
||||
_document->cancel();
|
||||
} else {
|
||||
DocumentOpenClickHandler::Open(
|
||||
_document->save(
|
||||
Data::FileOriginSavedGifs(),
|
||||
_document,
|
||||
nullptr,
|
||||
ActionOnLoadNone);
|
||||
QString());
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user